mirror of
https://github.com/wassname/GarageServer.IO.git
synced 2026-07-08 00:10:05 +08:00
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
function GarageServerGame (options) {
|
|
|
|
}
|
|
|
|
GarageServerGame.prototype.update = function () {
|
|
|
|
};
|
|
|
|
exports.createGame = function (options){
|
|
return new GarageServerGame(options);
|
|
}; |