14 lines
291 B
C#
14 lines
291 B
C#
namespace RecRoomArchive.Models.API.GameSessions
|
|
{
|
|
public enum JoinGameErrorCode
|
|
{
|
|
Success,
|
|
NoSuchGame,
|
|
PlayerNotOnline,
|
|
InsufficientSpace,
|
|
EventNotStarted,
|
|
EventAlreadyFinished,
|
|
EventCreatorNotReady,
|
|
Blocked
|
|
}
|
|
} |