using Core.Utility; using Excel2Json; using Fort23.UTool; namespace GameLogic.Hero { public class SkillInfo { public SkillConfig skillConfig; public SkillPowerupConfig SkillPowerupConfig; private int index; public SkillInfo(int skillId, int powerId) { skillConfig = ConfigComponent.Instance.Get(skillId); SkillPowerupConfig= ConfigComponent.Instance.Get(powerId); } } }