Adding methods for entities

This commit is contained in:
Jeremiah Billmann
2013-07-13 18:19:15 -04:00
parent 0f00f1216e
commit 0d97d35a4b
+12
View File
@@ -124,6 +124,18 @@ GarageServer.prototype.updatePlayerState = function (id, state) {
this.game.updatePlayerState(id, state);
};
GarageServer.prototype.addEntity = function (id) {
};
GarageServer.prototype.removeEntity = function (id) {
};
GarageServer.prototype.updateEntityState = function (id, state) {
};
GarageServer.prototype.getEntities = function () {
};
exports.createGarageServer = function (io, options) {
return new GarageServer(io, options);
};