ConstGuideId.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. namespace GFGGame
  2. {
  3. public class ConstGuideId
  4. {
  5. public const int SINGLE_FIGHT_GUIDE = 1;//单人战斗引导
  6. public const int CLOTHING_SHOP_VIEW_BTN_BUY = 11; //引导购买必需品
  7. public const int SEE_DRESS_TIPS = 12; //点击查看关卡提示
  8. public const int TARGET_FIGHT_GUIDE = 13; //双人对战算分提示
  9. public const int MAIN_UI_BTN_ZHAI_XING = 3;//引导摘星
  10. public const int LUCKY_BOX_VIEW_BTN_BACK = 4;//引导摘星后引导返回主界面
  11. public const int MAIN_UI_BTN_HUAN_ZHUANG = 2;//引导换装
  12. public const int SUIT_SYNTHETIC_GUIDE = 14;//引导套装合成
  13. public const int USE_CARD_FIGHT = 15;//引导使用卡牌战斗
  14. public const int TIPS_TAGS_FIGHT = 16;//提示标签
  15. public const int CARD_UP_STAR = 17;//词牌升星
  16. public const int PHOTOGRAPH_GUIDE = 18;//引导拍照
  17. public const int FIGHT_RESULT_TIPS_GUIDE = 19;//战斗结束提示语
  18. public const int CHAPTER_RESULT_VIEW = 6;
  19. public const int GET_SUIT_ITEM_VIEW_FULL = 7;
  20. public const int GET_BONUS_VIEW = 8;
  21. public const int GET_SUIT_ITEM_VIEW_FIRST = 9;
  22. public const int DRESS_UP_VIEW_BTN_BACK = 10;
  23. public const string START_STORY = "START_STORY";
  24. public const string SINGLE_FIGHT = "SINGLE_FIGHT";
  25. public const string BUY_CLOTHING = "BUY_CLOTHING";
  26. public const string TARGET_FIGHT = "TARGET_FIGHT";
  27. public const string LUCKY_BOX = "LUCKY_BOX";
  28. public const string FREEDOM_DRESS = "FREEDOM_DRESS";
  29. public const string CLOTHING_SYNTHETIC = "CLOTHING_SYNTHETIC";
  30. public const string SKILL_CARD_FIGHT = "SKILL_CARD_FIGHT";
  31. public const string OPEN_TAGS = "OPEN_TAGS";
  32. public const string UP_CARD_STAR = "UP_CARD_STAR";
  33. public const string PHOTOGRAPH = "PHOTOGRAPH";
  34. public const string FIRST_FIGHT_FAILED = "FIRST_FIGHT_FAILED";
  35. public const string FIRST_FIGHT_SINGLE_WIN = "FIRST_FIGHT_SINGLE_WIN";
  36. public const string FIRST_FIGHT_TARGET_WIN = "FIRST_FIGHT_TARGET_WIN";
  37. public const string GET_SUIT_ITEM_FIRST = "GET_SUIT_ITEM_FIRST";
  38. public const string GET_SUIT_ITEM_FULL = "GET_SUIT_ITEM_FULL";
  39. public const string GET_BONUS_FIRST = "GET_BONUS_FIRST";
  40. }
  41. }