class Player { constructor(id, pos, nb_goal, game) { this.id = id; this.pos = pos; this.nb_goal = nb_goal; this.game = game; } } export { Player }