SessionPhase.cs
1 namespace GUNRPG.Application.Sessions; 2 3 /// <summary> 4 /// High-level lifecycle for a combat session (distinct from combat phase). 5 /// </summary> 6 public enum SessionPhase 7 { 8 Created, 9 Planning, 10 Resolving, 11 Completed 12 }