10 lines
134 B
C#
10 lines
134 B
C#
namespace Content.Server.NPC.HTN;
|
|
|
|
[Flags]
|
|
public enum HTNPlanState : byte
|
|
{
|
|
TaskFinished = 1 << 0,
|
|
|
|
PlanFinished = 1 << 1,
|
|
}
|