wingbase/public/js/starbugs/world/player.js
2016-03-24 13:26:35 +00:00

7 lines
113 B
JavaScript

class Player {
constructor(name, team, ship) {
this.name = name;
this.team = team;
this.ship = ship;
}
}