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

13 lines
300 B
C#

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