diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Api/Games/GameJoinError.cs')
-rw-r--r-- | Impostor-dev/src/Impostor.Api/Games/GameJoinError.cs | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Api/Games/GameJoinError.cs b/Impostor-dev/src/Impostor.Api/Games/GameJoinError.cs new file mode 100644 index 0000000..4889ea9 --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Games/GameJoinError.cs @@ -0,0 +1,48 @@ +namespace Impostor.Api.Games +{ + public enum GameJoinError + { + /// <summary> + /// No error occured while joining the game. + /// </summary> + None, + + /// <summary> + /// The client is not registered in the client manager. + /// </summary> + InvalidClient, + + /// <summary> + /// The client has been banned from the game. + /// </summary> + Banned, + + /// <summary> + /// The game is full. + /// </summary> + GameFull, + + /// <summary> + /// The limbo state of the player is incorrect. + /// </summary> + InvalidLimbo, + + /// <summary> + /// The game is already started. + /// </summary> + GameStarted, + + /// <summary> + /// The game has been destroyed. + /// </summary> + GameDestroyed, + + /// <summary> + /// Custom error by a plugin. + /// </summary> + /// <remarks> + /// A custom message can be set in <see cref="GameJoinResult.Message"/>. + /// </remarks> + Custom, + } +}
\ No newline at end of file |