// Auto Generated Code By excel2json // Generate From Excel\EventConfig.xlsx. SheetName: EventNPC using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "EventNPC.json")] public partial class EventNPCHolder : ConfigHolder { } [Serializable] public struct EventNPC : IConfig { public int GetID() {return ID;} /// ///ID /// #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 /// ///半身像icon /// #if !COMBAT_SERVER public int ID_1; #else public int ID_1{ set; get; } #endif /// ///道友ID /// #if !COMBAT_SERVER public int DaoyouID; #else public int DaoyouID{ set; get; } #endif } } // End of Auto Generated Code