add start of client rendering

This commit is contained in:
Asraelite 2016-03-21 16:15:49 +00:00
parent 9787a9d468
commit ebcee954bf
13 changed files with 127 additions and 7 deletions

View file

@ -0,0 +1,5 @@
function Player(own, name, ship) {
this.name = name;
this.ship = ship;
this.own = own;
}