namespace Impostor.Api.Games { public enum GameJoinError { /// /// No error occured while joining the game. /// None, /// /// The client is not registered in the client manager. /// InvalidClient, /// /// The client has been banned from the game. /// Banned, /// /// The game is full. /// GameFull, /// /// The limbo state of the player is incorrect. /// InvalidLimbo, /// /// The game is already started. /// GameStarted, /// /// The game has been destroyed. /// GameDestroyed, /// /// Custom error by a plugin. /// /// /// A custom message can be set in . /// Custom, } }