12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // 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>
- ///不是npc直接显示背景
- /// </summary>
- #if !COMBAT_SERVER
- public bool isNpc;
- #else
- public bool isNpc{ set; get; }
- #endif
-
- /// <summary>
- ///半身像icon
- /// </summary>
- #if !COMBAT_SERVER
- public string icon;
- #else
- public string icon{ set; get; }
- #endif
-
- /// <summary>
- ///道友ID
- /// </summary>
- #if !COMBAT_SERVER
- public int DaoyouID;
- #else
- public int DaoyouID{ set; get; }
- #endif
-
- }
- }
- // End of Auto Generated Code
|