2020-06-18 22:52:44 +10:00
|
|
|
using Content.Server.AI.Utility.Actions;
|
|
|
|
|
using Content.Server.AI.Utility.Actions.Test;
|
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
|
|
|
|
|
{
|
|
|
|
|
public sealed class PathingDummyBehaviorSet : BehaviorSet
|
|
|
|
|
{
|
|
|
|
|
public PathingDummyBehaviorSet(IEntity owner) : base(owner)
|
|
|
|
|
{
|
|
|
|
|
Actions = new IAiUtility[]
|
|
|
|
|
{
|
|
|
|
|
new MoveRightAndLeftTen(owner),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|