initial commit of poker game

This commit is contained in:
Edward Yang
2015-03-20 14:21:44 -07:00
commit cd7f17778f
147 changed files with 10833 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
var BotService = require('../services/botService');
module.exports = function(app, opts){
var service = new BotService(app, opts);
app.set('botService', service, true);
service.name = '__bot__';
return service;
};

View File

@@ -0,0 +1,8 @@
var BotService = require('../services/stateService');
module.exports = function(app, opts){
var service = new StateService(app, opts);
app.set('stateService', service, true);
service.name = '__state__';
return service;
};

View File

@@ -0,0 +1,8 @@
var TableService = require('../services/tableService');
module.exports = function(app, opts){
var service = new TableService(app, opts);
app.set('tableService', service, true);
service.name = '__table__';
return service;
};