go_dreamfactory/modules/moonfantasy/configure.go
2022-08-30 13:46:25 +08:00

24 lines
467 B
Go

package moonfantasy
import (
"go_dreamfactory/modules"
"go_dreamfactory/lego/core"
)
const (
game_dreamlandboos = "game_dreamlandboos.json"
)
///背包配置管理组件
type configureComp struct {
modules.MCompConfigure
}
//组件初始化接口
func (this *configureComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
this.ModuleCompBase.Init(service, module, comp, options)
return
}