player-id.js 370 B

12345678910111213141516
  1. 'use strict';
  2. export default class PlayerId {
  3. constructor(playerSocket, playerName = '', playerColor = 'unk') {
  4. this.playerSocket = playerSocket;
  5. this.playerName = playerName;
  6. this.playerColor = playerColor;
  7. }
  8. setPlayerName(playerName) {
  9. this.playerName = playerName;
  10. }
  11. setPlayerColor(playerColor) {
  12. this.playerColor = playerColor;
  13. }
  14. }