package constants // // 章节主关卡 // func IsChapterMap(id uint) bool { // return (id < MapId_Fortress) // } // func IsActivityMap(id uint) bool { // return (id >= MapId_Fortress && id < MapId_OutpostRate) // } // // 章节子关卡 // func IsOutpostMap(id uint) bool { // return (id > MapId_OutpostRate) // } // // IsChapterSupportMultiReward 判断传入章节是否支持多倍奖励 // func IsChapterSupportMultiReward(chapterID uint) bool { // switch chapterID { // // 佣兵要塞 九层妖塔 奇诡皇陵 // case MapId_Fortress, MapId_DemonTower, MapId_Mausoleum: // return true // } // return false // }