6
2025-11-05 11:11:22 +03:00

10 lines
134 B
C#

namespace Content.Server.NPC.HTN;
[Flags]
public enum HTNPlanState : byte
{
TaskFinished = 1 << 0,
PlanFinished = 1 << 1,
}