Interface GameHighScore

Contains one row of the game high score table.

interface GameHighScore {
    @type: "gameHighScore";
    position: number;
    score: number;
    user_id: number;
}

Properties

@type: "gameHighScore"
position: number

Position in the high score table.

score: number

User score.

user_id: number

User identifier.