// Auto Generated Code By excel2json // Generate From Excel\HeroRankingConfig.xlsx. SheetName: HeroRankingConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "HeroRankingConfig.json")] public partial class HeroRankingConfigHolder : ConfigHolder { } [Serializable] public struct HeroRankingConfig : IConfig { public int GetID() {return ID;} /// ///ID /// public int ID; /// ///属性类型 1=生命 2=攻击 3=威力 4=防御 /// public int AttType; /// ///针对职业 1=坦克 2=输出 3=辅助 4=治疗 /// public int Class; /// ///提供的评分系数组 进攻评分;生存评分;辅助评分 /// public float[] Paras; } } // End of Auto Generated Code