123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // 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<EventNPC>
{
- }
- [Serializable]
- public struct EventNPC : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///ID
- /// </summary>
- #if !COMBAT_SERVER
- public int ID;
- #else
- public int ID{ set; get; }
- #endif
-
- /// <summary>
- ///名字
- /// </summary>
- #if !COMBAT_SERVER
- public int name;
- #else
- public int name{ set; get; }
- #endif
-
- /// <summary>
- ///半身像icon
- /// </summary>
- #if !COMBAT_SERVER
- public int ID_1;
- #else
- public int ID_1{ set; get; }
- #endif
-
- /// <summary>
- ///道友ID
- /// </summary>
- #if !COMBAT_SERVER
- public int DaoyouID;
- #else
- public int DaoyouID{ set; get; }
- #endif
-
- }
- }
- // End of Auto Generated Code
|