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

20 lines
299 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
// ReSharper disable InconsistentNaming
public enum AgentStateMachineStep
{
None,
#region Generic
ReturningHome,
#endregion
#region Hunter
Hunter_SeekingPrey
#endregion
}
}