namespace IGP.Multiplayer.Models
{
    public static class IGPMultiplayerErrorCodes
    {
        public const string ERR_ROOM_NOT_FOUND = "ROOM_NOT_FOUND";
        public const string ERR_PLAYER_NOT_FOUND = "PLAYER_NOT_FOUND";
        public const string ERR_ROOM_FULL = "ROOM_FULL";
        public const string ERR_TOO_MANY_ROOMS = "TOO_MANY_ROOMS";
        public const string ERR_PLAYER_ALREADY_IN_ROOM = "PLAYER_ALREADY_IN_ROOM";
        public const string ERR_PLAYER_NOT_IN_ROOM = "PLAYER_NOT_IN_ROOM";
        public const string ERR_ROOM_CONTEXT_REQUIRED = "ROOM_CONTEXT_REQUIRED";
        public const string ERR_HOSTED_REALTIME_NOT_READY = "HOSTED_REALTIME_NOT_READY";
        public const string ERR_DESKTOP_SESSION_CAPABILITY_MISSING = "DESKTOP_SESSION_CAPABILITY_MISSING";
        public const string ERR_UNAUTHORIZED = "UNAUTHORIZED";
        public const string ERR_FORBIDDEN = "FORBIDDEN";
    }
}
