MultiplayerMinesweeper/dist/player.js

8 lines
175 B
JavaScript
Raw Normal View History

export class Player {
constructor(id, name, color) {
this.id = id;
this.name = name;
this.color = color;
}
}
//# sourceMappingURL=player.js.map