42_ft_transcendence/frontend/static/js/api/game/Player.js
2024-01-15 13:37:15 +01:00

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 }