This commit is contained in:
aozhiwei 2024-11-20 15:04:21 +08:00
parent 7ca7dabaeb
commit faea8deb99
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package service
import (
"main/vo"
)
type award struct {
}
func (this *award) init() {
}
func (this *award) unInit() {
}
func (this *award) AddItem(accountId string, itemId int32, itemNum int32, baseVo *vo.BaseVo) {
}

View File

@ -9,6 +9,7 @@ var _serviceMgr = new(serviceMgr)
var Chip = new(chip) var Chip = new(chip)
var Log = new(log) var Log = new(log)
var GM = new(gm) var GM = new(gm)
var Award = new(award)
func init() { func init() {
global.RegModule(constant.SERVICE_MGR_MODULE_IDX, _serviceMgr) global.RegModule(constant.SERVICE_MGR_MODULE_IDX, _serviceMgr)