12345678910111213141516171819202122232425262728 |
- namespace Core.Utility
- {
- public class GlobalParam
- {
- public static int Item_Coin_ID = 1001;
- public static int Item_Diamond_ID = 1002;
- public static int Item_HeroExp_ID = 1003;
- /// <summary>
- /// 英雄最大上阵数量
- /// </summary>
- public static int Max_Deploy_HERO = 4;
-
- /// <summary>
- /// 主界面英雄头像,点击后,向上偏移的位移
- /// </summary>
- public static int Hero_Pos_Offset = 110;
-
- /// <summary>
- /// 最大等级差
- /// </summary>
- public static int Max_Main_Level_Difference = 10;
-
- /// <summary>
- /// 普攻技能组
- /// </summary>
- public static int Normal_Attack_Skill_Group_ID = 1001;
- }
- }
|