配置上传

This commit is contained in:
meixiongfeng 2023-08-10 20:59:42 +08:00
parent 6d917c37ea
commit 2b39b7527f
2 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,7 @@ const (
game_bossconf = "game_stoneboss.json" game_bossconf = "game_stoneboss.json"
game_battleconf = "game_stonebattle.json" game_battleconf = "game_stonebattle.json"
game_stonetalent = "game_stonetalent.json" game_stonetalent = "game_stonetalent.json"
game_storeconf = "game_stonestore.json" // 商店配置
) )
///背包配置管理组件 ///背包配置管理组件

View File

@ -104,3 +104,7 @@ func (this *MStonehenge) GetStoneBoosData(id int32) (bossstage *pb.StageData) {
func (this *MStonehenge) GetAllStoneBoosData() (bossstage map[int32]*pb.StageData) { func (this *MStonehenge) GetAllStoneBoosData() (bossstage map[int32]*pb.StageData) {
return this.bossStage return this.bossStage
} }
func (this *MStonehenge) EventTrigger(event []string, room *pb.RoomData) {
}