mooball
    Preparing search index...

    Type Alias RoomDataDetails

    A class that stores some detailed properties of a room. This instance is only received from the backend.

    type RoomDataDetails = {
        flag: string;
        hideOwner: boolean;
        lat: number;
        lon: number;
        maxPlayers: number;
        name: string;
        password: boolean;
        players: number;
        thumbnail: string;
        tintColor: uint32;
        version: number;
    }
    Index

    Properties

    flag: string

    Country code of this room.

    hideOwner: boolean

    Whether to hide the owner of this room or not.

    lat: number

    Latitude value of this room.

    lon: number

    Longitude value of this room.

    maxPlayers: number

    Maximum allowed number of players in this room.

    name: string

    Name of this room.

    password: boolean

    Whether this room is password-protected or not.

    players: number

    Current player count in this room.

    thumbnail: string

    Thumbnail(to show in room list) of this room.

    tintColor: uint32

    Background tint color(to show in room list) of this room.

    version: number

    Version of this room.