1234567891011121314151617181920212223242526272829303132 |
- // Auto Generated Code By excel2json
- // Generate From Excel\EventConfig.xlsx. SheetName: EventConditionConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "EventConditionConfig.json")]
- public partial class EventConditionConfigHolder : ConfigHolder<EventConditionConfig>
{
- }
- [Serializable]
- public struct EventConditionConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///条件ID
- /// </summary>
- public int ID;
- /// <summary>
- ///条件运算 1 =大于等于 2 =等于 3=小于等于
- /// </summary>
- public int operation;
- }
- }
- // End of Auto Generated Code
|