Files
riversong-code-showcase/Source/Riversong/Game/World/Agents/Intents/IntentExecutionState.cs
2026-05-21 16:04:49 +02:00

11 lines
168 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public enum IntentExecutionState
{
WaitingIntent,
ExecutingIntent,
EmptyQueue
}
}