17 lines
400 B
C#
17 lines
400 B
C#
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.AI.WorldState.States.Combat
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed class WeaponEntityState : PlanningStateData<EntityUid?>
|
|
{
|
|
// Similar to TargetEntity
|
|
public override string Name => "WeaponEntity";
|
|
public override void Reset()
|
|
{
|
|
Value = null;
|
|
}
|
|
}
|
|
}
|