diff --git a/lib/server/garageserver.io.js b/lib/server/garageserver.io.js index 9fe5e2d..9856de7 100644 --- a/lib/server/garageserver.io.js +++ b/lib/server/garageserver.io.js @@ -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); }; \ No newline at end of file