Files
tbd-station-14/Content.Server/AI/WorldState/States/Utility/StoredStateIsNullState.cs
2022-05-13 17:59:03 +10:00

11 lines
285 B
C#

namespace Content.Server.AI.WorldState.States.Utility
{
public sealed class StoredStateIsNullState : PlanningStateData<Type>
{
public override string Name => "StoredStateIsNull";
public override void Reset()
{
Value = null;
}
}
}