// Auto Generated Code By excel2json // Generate From Excel\RelicFactory.xlsx. SheetName: RelicItemConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "RelicItemConfig.json")] public partial class RelicItemConfigHolder : ConfigHolder { } [Serializable] public struct RelicItemConfig : IConfig { public int GetID() {return ID;} /// ///ID 共2位 前2位表部位 11:战靴 12:衣服 13:手套 14:头盔 后2位表套装 01~11 (和EquipmentSuitConfig ID)一致 /// public int ID; /// ///装备的ItemID /// public int itemID; } } // End of Auto Generated Code