Files
RRAC/RecRoomArchive.Models/API/GameSessions/JoinGameErrorCode.cs
2026-02-27 19:30:49 -08:00

14 lines
291 B
C#

namespace RecRoomArchive.Models.API.GameSessions
{
public enum JoinGameErrorCode
{
Success,
NoSuchGame,
PlayerNotOnline,
InsufficientSpace,
EventNotStarted,
EventAlreadyFinished,
EventCreatorNotReady,
Blocked
}
}