Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com> Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
16 lines
371 B
C#
16 lines
371 B
C#
using JetBrains.Annotations;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
|
|
namespace Content.Server.AI.WorldState.States.Movement
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed class MoveTargetState : PlanningStateData<IEntity>
|
|
{
|
|
public override string Name => "MoveTarget";
|
|
public override void Reset()
|
|
{
|
|
Value = null;
|
|
}
|
|
}
|
|
}
|