SkiptoConfig.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // Auto Generated Code By excel2json
  2. // Generate From Excel\Skipto.xlsx. SheetName: SkiptoConfig
  3. using System;
  4. using Fort23.GameData;
  5. namespace Excel2Json
  6. {
  7. [Config(prefab = "SkiptoConfig.json")]
  8. public partial class SkiptoConfigHolder : ConfigHolder<SkiptoConfig> {
  9. }
  10. [Serializable]
  11. public struct SkiptoConfig : IConfig {
  12. public int GetID() {return ID;}
  13. /// <summary>
  14. ///ID
  15. /// </summary>
  16. #if !COMBAT_SERVER
  17. public int ID;
  18. #else
  19. public int ID{ set; get; }
  20. #endif
  21. /// <summary>
  22. ///跳转类型
  23. /// </summary>
  24. #if !COMBAT_SERVER
  25. public int SkipType;
  26. #else
  27. public int SkipType{ set; get; }
  28. #endif
  29. /// <summary>
  30. ///跳转ID 填写方法见附页
  31. /// </summary>
  32. #if !COMBAT_SERVER
  33. public int SkipID;
  34. #else
  35. public int SkipID{ set; get; }
  36. #endif
  37. /// <summary>
  38. ///跳转参数 填写方法见附页
  39. /// </summary>
  40. #if !COMBAT_SERVER
  41. public int[] SkipArguments;
  42. #else
  43. public int[] SkipArguments{ set; get; }
  44. #endif
  45. /// <summary>
  46. ///跳转来源语言表ID
  47. /// </summary>
  48. #if !COMBAT_SERVER
  49. public int SkipTxt;
  50. #else
  51. public int SkipTxt{ set; get; }
  52. #endif
  53. /// <summary>
  54. ///该跳转解锁条件类型
  55. /// </summary>
  56. #if !COMBAT_SERVER
  57. public int UnlockType;
  58. #else
  59. public int UnlockType{ set; get; }
  60. #endif
  61. /// <summary>
  62. ///该跳转解锁条件参数
  63. /// </summary>
  64. #if !COMBAT_SERVER
  65. public int[] UnlockPara1;
  66. #else
  67. public int[] UnlockPara1{ set; get; }
  68. #endif
  69. /// <summary>
  70. ///该跳转在不可跳转时给玩家看的【达成条件】语言表
  71. /// </summary>
  72. #if !COMBAT_SERVER
  73. public int UnlockPara2;
  74. #else
  75. public int UnlockPara2{ set; get; }
  76. #endif
  77. }
  78. }
  79. // End of Auto Generated Code