export interface GameRankAndScoreEntity {
    user: string;
    totalScore: number;
    lastAward: string;
    rank?: number;
}
