// Auto Generated Code By excel2json // Generate From Excel\DaoyouConfig.xlsx. SheetName: DaoyouLevelupConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "DaoyouLevelupConfig.json")] public partial class DaoyouLevelupConfigHolder : ConfigHolder { } [Serializable] public struct DaoyouLevelupConfig : IConfig { public int GetID() {return ID;} /// ///LV /// #if !COMBAT_SERVER public int ID; #else public int ID{ set; get; } #endif /// ///名称 /// #if !COMBAT_SERVER public int name; #else public int name{ set; get; } #endif /// ///升级所需经验 /// #if !COMBAT_SERVER public int exp; #else public int exp{ set; get; } #endif /// ///道具奖励ID /// #if !COMBAT_SERVER public int[] prizeID; #else public int[] prizeID{ set; get; } #endif /// ///道具奖励数量 /// #if !COMBAT_SERVER public int[] prizeNum; #else public int[] prizeNum{ set; get; } #endif /// ///挂机增益成长率 100=100% /// #if !COMBAT_SERVER public int guajiGrowup; #else public int guajiGrowup{ set; get; } #endif } } // End of Auto Generated Code