MultiplayerMinesweeper/scripts/player.mjs

8 lines
125 B
JavaScript

export class Player {
constructor(id, name, color) {
this.id = id;
this.name = name;
this.color = color;
}
}