shop.go 450 B

12345678910111213141516171819
  1. package enum
  2. const (
  3. ShopResetType_Day int32 = 1 // 每日重置
  4. ShopResetType_Week int32 = 2 //每周重置
  5. ShopResetType_Season int32 = 3 // 赛季重置
  6. )
  7. const (
  8. ShopType_Map int32 = 0 // 地图商店
  9. ShopType_Game int32 = 1 // 大厅商店
  10. )
  11. // 商店解锁类型
  12. const (
  13. ShopUnlockType_None int32 = 0 // 不需要任何条件
  14. ShopUnlockType_League int32 = 1 // 加入联盟
  15. ShopUnlockType_Season int32 = 2 // 赛季前n天
  16. )