1 2 3 4 5 6 7 8 9 10 11
namespace Impostor.Api.Innersloth { public enum GameStates : byte { NotStarted = 0, Starting = 1, Started = 2, Ended = 3, Destroyed = 4, } }