// Auto Generated Code By excel2json // Generate From Excel\ChouKa.xlsx. SheetName: DropGroupConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "DropGroupConfig.json")] public partial class DropGroupConfigHolder : ConfigHolder { } [Serializable] public struct DropGroupConfig : IConfig { public int GetID() {return ID;} /// ///掉落组ID /// #if !COMBAT_SERVER public int ID; #else public int ID{ set; get; } #endif /// ///掉落概率\权重 1000为100% /// #if !COMBAT_SERVER public int dropRate; #else public int dropRate{ set; get; } #endif /// /// /// #if !COMBAT_SERVER public int[] dropItemID; #else public int[] dropItemID{ set; get; } #endif } } // End of Auto Generated Code