21 lines
459 B
Go
21 lines
459 B
Go
package pack
|
|
|
|
import (
|
|
"github.com/liwei1dao/lego/core"
|
|
"github.com/liwei1dao/lego/core/cbase"
|
|
)
|
|
|
|
///背包配置管理组件
|
|
type Configure_Comp struct {
|
|
cbase.ModuleCompBase
|
|
}
|
|
|
|
func (this *Configure_Comp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
|
this.ModuleCompBase.Init(service, module, comp, options)
|
|
return
|
|
}
|
|
|
|
func (this *Configure_Comp) GetItemConfigureData(id uint32) {
|
|
|
|
}
|