123456789101112131415161718192021222324 |
- var async = require('asyncawait/async');
- var await = require('asyncawait/await');
- var PickLotusAreaHandler = function(socket){
- this.socket = socket;
- }
- PickLotusAreaHandler.prototype.onCaiLianEndPush = function(cb){
- this.socket.on('area.pickLotusAreaPush.caiLianEndPush',cb);
- }
- PickLotusAreaHandler.prototype.onKillbossInfoPush = function(cb){
- this.socket.on('area.pickLotusAreaPush.killbossInfoPush',cb);
- }
- module.exports = PickLotusAreaHandler;
|