2020-06-18 22:52:44 +10:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Content.Server.AI.Utility.Actions;
|
2021-02-11 01:13:03 -08:00
|
|
|
using Robust.Shared.GameObjects;
|
2020-06-18 22:52:44 +10:00
|
|
|
|
|
|
|
|
namespace Content.Server.AI.Utility.BehaviorSets
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// AKA DecisionMaker in IAUS. Just a group of actions that can be dynamically added or taken away from an AI.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class BehaviorSet
|
|
|
|
|
{
|
|
|
|
|
protected IEntity Owner;
|
|
|
|
|
|
|
|
|
|
public BehaviorSet(IEntity owner)
|
|
|
|
|
{
|
|
|
|
|
Owner = owner;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<IAiUtility> Actions { get; protected set; }
|
|
|
|
|
}
|
|
|
|
|
}
|