ConstGuideId.cs 1.3 KB

12345678910111213141516171819202122232425262728
  1. namespace GFGGame
  2. {
  3. public class ConstGuideId
  4. {
  5. public const string START_STORY = "START_STORY";
  6. public const string SINGLE_FIGHT = "SINGLE_FIGHT";
  7. public const string BUY_CLOTHING = "BUY_CLOTHING";
  8. public const string TARGET_FIGHT = "TARGET_FIGHT";
  9. public const string LUCKY_BOX = "LUCKY_BOX";
  10. public const string FREEDOM_DRESS = "FREEDOM_DRESS";
  11. public const string CLOTHING_DECOMPOSE = "CLOTHING_DECOMPOSE";
  12. public const string CLOTHING_SYNTHETIC = "CLOTHING_SYNTHETIC";
  13. public const string SKILL_CARD_FIGHT = "SKILL_CARD_FIGHT";
  14. public const string OPEN_TAGS = "OPEN_TAGS";
  15. public const string UP_CARD_STAR = "UP_CARD_STAR";
  16. public const string UP_CARD_LV = "UP_CARD_LV";
  17. public const string PHOTOGRAPH = "PHOTOGRAPH";
  18. public const string FIRST_FIGHT_FAILED = "FIRST_FIGHT_FAILED";
  19. public const string FIRST_FIGHT_SINGLE_WIN = "FIRST_FIGHT_SINGLE_WIN";
  20. public const string FIRST_FIGHT_TARGET_WIN = "FIRST_FIGHT_TARGET_WIN";
  21. public const string GET_SUIT_ITEM_FIRST = "GET_SUIT_ITEM_FIRST";
  22. public const string GET_SUIT_ITEM_FULL = "GET_SUIT_ITEM_FULL";
  23. public const string GET_BONUS_FIRST = "GET_BONUS_FIRST";
  24. public const string STUDIO_OPEN = "STUDIO_OPEN";
  25. }
  26. }