44 lines
885 B
Go
44 lines
885 B
Go
package chat
|
|
|
|
import (
|
|
"go_dreamfactory/modules"
|
|
|
|
"go_dreamfactory/lego/core"
|
|
)
|
|
|
|
const (
|
|
game_equipment = "game_equipment.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
|
|
}
|
|
|
|
//获取服务区 分组
|
|
func (this *configureComp) GetServiecTagGroup(stag string) int32 {
|
|
return 0
|
|
}
|
|
|
|
//获取自动加入频道 任务限制
|
|
func (this *configureComp) GetAutoIntoChannelMax() int {
|
|
return 0
|
|
}
|
|
|
|
//获取手动加入频道 任务限制
|
|
func (this *configureComp) GetChanageChannelMax() int {
|
|
return 0
|
|
}
|
|
|
|
//获取手动加入频道 任务限制
|
|
func (this *configureComp) GetChannelRecordMax() int {
|
|
return 99
|
|
}
|