6
2026-01-24 12:49:55 +03:00

10 lines
134 B
C#

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