Interface GameHighScore

This object represents one row of the high scores table for a game.

interface GameHighScore {
    position: number;
    score: number;
    user: User;
}

Properties

Properties

position: number

Position in high score table for the game

score: number

Score

user: User

User