ConstGuideId.cs 581 B

12345678910111213141516
  1. namespace GFGGame
  2. {
  3. public class ConstGuideId
  4. {
  5. public const int CHAPTER_VIEW_BTN_HOME = 1;
  6. public const int MAIN_UI_BTN_HUAN_ZHUANG = 2;
  7. public const int MAIN_UI_BTN_ZHAI_XING = 3;
  8. public const int LUCKY_BOX_VIEW_BTN_BACK = 4;
  9. public const int MAIN_UI_BTN_STORY = 5;
  10. public const int CHAPTER_RESULT_VIEW = 6;
  11. public const int GET_SUIT_ITEM_VIEW_FULL = 7;
  12. public const int GET_BONUS_VIEW = 8;
  13. public const int GET_SUIT_ITEM_VIEW_FIRST = 9;
  14. public const int DRESS_UP_VIEW_BTN_BACK = 10;
  15. }
  16. }