123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- // Auto Generated Code By excel2json
- // Generate From Excel\Skipto.xlsx. SheetName: SkiptoConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "SkiptoConfig.json")]
- public partial class SkiptoConfigHolder : ConfigHolder<SkiptoConfig>
{
- }
- [Serializable]
- public struct SkiptoConfig : 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 SkipType;
- #else
- public int SkipType{ set; get; }
- #endif
-
- /// <summary>
- ///跳转ID 填写方法见附页
- /// </summary>
- #if !COMBAT_SERVER
- public int SkipID;
- #else
- public int SkipID{ set; get; }
- #endif
-
- /// <summary>
- ///跳转参数 填写方法见附页
- /// </summary>
- #if !COMBAT_SERVER
- public int[] SkipArguments;
- #else
- public int[] SkipArguments{ set; get; }
- #endif
-
- /// <summary>
- ///跳转来源语言表ID
- /// </summary>
- #if !COMBAT_SERVER
- public int SkipTxt;
- #else
- public int SkipTxt{ set; get; }
- #endif
-
- /// <summary>
- ///该跳转解锁条件类型
- /// </summary>
- #if !COMBAT_SERVER
- public int UnlockType;
- #else
- public int UnlockType{ set; get; }
- #endif
-
- /// <summary>
- ///该跳转解锁条件参数
- /// </summary>
- #if !COMBAT_SERVER
- public int[] UnlockPara1;
- #else
- public int[] UnlockPara1{ set; get; }
- #endif
-
- /// <summary>
- ///该跳转在不可跳转时给玩家看的【达成条件】语言表
- /// </summary>
- #if !COMBAT_SERVER
- public int UnlockPara2;
- #else
- public int UnlockPara2{ set; get; }
- #endif
-
- }
- }
- // End of Auto Generated Code
|