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;
|