6
2026-01-13 18:31:02 +02:00

10 lines
134 B
C#

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