42_ft_transcendence/frontend/static/js/api/game/Player.js
2024-01-16 17:47:48 +01:00

18 lines
273 B
JavaScript

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