| 12345678910111213141516171819 |
- package enum
- const (
- ShopResetType_Day int32 = 1 // 每日重置
- ShopResetType_Week int32 = 2 //每周重置
- ShopResetType_Season int32 = 3 // 赛季重置
- )
- const (
- ShopType_Map int32 = 0 // 地图商店
- ShopType_Game int32 = 1 // 大厅商店
- )
- // 商店解锁类型
- const (
- ShopUnlockType_None int32 = 0 // 不需要任何条件
- ShopUnlockType_League int32 = 1 // 加入联盟
- ShopUnlockType_Season int32 = 2 // 赛季前n天
- )
|