Files
GarageServer.IO/lib/server/entities/player.js
T
Jeremiah Billmann 997afd00f1 Code cleanup
2013-07-09 21:46:23 -04:00

11 lines
234 B
JavaScript

var entity = require('./entity');
exports = module.exports = Player;
function Player (client) {
entity.call(this, client.id);
this.client = client;
this.inputs = [];
}
Player.prototype = Object.create(entity.prototype);