Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Player.js 205B

1234567891011121314
  1. /**
  2. *
  3. * @param id
  4. * @param label
  5. * @param name
  6. * @constructor
  7. */
  8. var Player = function(id, label, name) {
  9. this.id = id;
  10. this.label = label;
  11. this.name = name;
  12. };
  13. module.exports = Player;