Delta-v/Content.Server/AI/WorldState/States/Utility/StoredStateIsNullState.cs

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;
}
}
}