wingbase/public/js/starbugs/world/player.js
2016-03-21 16:15:49 +00:00

5 lines
92 B
JavaScript

function Player(own, name, ship) {
this.name = name;
this.ship = ship;
this.own = own;
}