Files
GarageServer.IO/lib/server/garageservergame.js
T
Jeremiah Billmann 0193ce27a1 Progress...
2013-05-17 21:23:53 -04:00

11 lines
187 B
JavaScript

function GarageServerGame (options) {
}
GarageServerGame.prototype.update = function () {
};
exports.createGame = function (options){
return new GarageServerGame(options);
};