MultiplayerMinesweeper/scripts/player.mjs

8 lines
125 B
JavaScript
Raw Normal View History

2022-06-22 01:51:09 +00:00
export class Player {
constructor(id, name, color) {
this.id = id;
this.name = name;
this.color = color;
}
}