13 lines
192 B
JavaScript
13 lines
192 B
JavaScript
|
|
class Player
|
|
{
|
|
constructor(id, pos, nb_goal, game)
|
|
{
|
|
this.id = id;
|
|
this.pos = pos;
|
|
this.nb_goal = nb_goal;
|
|
this.game = game;
|
|
}
|
|
}
|
|
|
|
export { Player } |