This commit is contained in:
aozhiwei 2024-11-20 16:30:53 +08:00
parent 08a8a3e735
commit 3f5dee6f82
2 changed files with 3 additions and 0 deletions

View File

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

View File

@ -7,9 +7,11 @@ func (this *serviceMgr) Init() {
Chip.init()
Log.init()
GM.init()
Bag.init()
}
func (this *serviceMgr) UnInit() {
Bag.unInit()
GM.unInit()
Chip.unInit()
Log.unInit()