/** * A player of a game. */ export default interface Player { /** * The name or pseudonyme of the player. */ name: string; /** * The round the player arrived, should be 0 for most players. */ readonly roundArrived: number; /** * The round the player left, should be 0 (did not left) for most players. */ readonly roundLeft: number; }