ConstStoreId.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Collections;
  2. using UnityEngine;
  3. namespace GFGGame
  4. {
  5. public class ConstStoreId
  6. {
  7. public const int CLOTHING_STORE_ID = 1;//服装店
  8. public const int LUCKY_BOX_STORE_ID = 2;//抽卡兑换商店
  9. public const int LUCKY_BOX_ACTIVITY_STORE_ID = 3;//抽卡活动兑换商店
  10. public const int GALLERY_STORE_ID = 4;//画廊积分兑换商店
  11. public const int DIAMOND_STORE_ID = 1;//钻石商店
  12. public const string DIAMOND_STORE_TITLE = "钻石商城";//钻石商店
  13. public const string CLOTHING_STORE_TITLE = "服装店";//服装店
  14. public const string LUCKY_BOX_STORE_TITLE = "落星商城";//抽卡兑换商店
  15. public const string LUCKY_BOX_ACTIVITY_STORE_TITLE = "活动商城";//抽卡活动兑换商店
  16. private static SortedList _storeTitleList;
  17. // public static SortedList CardStateList()
  18. // {
  19. // if (ConstStoreId._storeTitleList == null)
  20. // {
  21. // ConstStoreId._storeTitleList = new SortedList();
  22. // ConstStoreId._storeTitleList.Add(ConstStoreId.DIAMOND_STORE_ID, ConstStoreId.DIAMOND_STORE_TITLE);
  23. // ConstStoreId._storeTitleList.Add(ConstStoreId.CLOTHING_STORE_ID, ConstStoreId.CLOTHING_STORE_TITLE);
  24. // ConstStoreId._storeTitleList.Add(ConstStoreId.LUCKY_BOX_STORE_ID, ConstStoreId.LUCKY_BOX_STORE_TITLE);
  25. // ConstStoreId._storeTitleList.Add(ConstStoreId.LUCKY_BOX_ACTIVITY_STORE_ID, ConstStoreId.LUCKY_BOX_ACTIVITY_STORE_TITLE);
  26. // }
  27. // return ConstStoreId._storeTitleList;
  28. // }
  29. }
  30. }