GuildTycoon/Assets/_/Features/GoalSystem/Runtime/GoalState.cs
2025-09-06 23:56:47 +02:00

9 lines
122 B
C#

namespace Goals.Runtime
{
public enum GoalState
{
Pending,
InProgress,
Completed,
}
}