GlobalParam.cs 801 B

12345678910111213141516171819202122232425262728
  1. namespace Core.Utility
  2. {
  3. public class GlobalParam
  4. {
  5. public static int Item_Coin_ID = 1001;
  6. public static int Item_Diamond_ID = 1002;
  7. public static int Item_HeroExp_ID = 1003;
  8. /// <summary>
  9. /// 英雄最大上阵数量
  10. /// </summary>
  11. public static int Max_Deploy_HERO = 4;
  12. /// <summary>
  13. /// 主界面英雄头像,点击后,向上偏移的位移
  14. /// </summary>
  15. public static int Hero_Pos_Offset = 110;
  16. /// <summary>
  17. /// 最大等级差
  18. /// </summary>
  19. public static int Max_Main_Level_Difference = 10;
  20. /// <summary>
  21. /// 普攻技能组
  22. /// </summary>
  23. public static int Normal_Attack_Skill_Group_ID = 1001;
  24. }
  25. }