LanguageChineseConfig_skill.cs 772 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // Auto Generated Code By excel2json
  2. // Generate From Excel\Language_skill.xlsx. SheetName: LanguageChineseConfig_skill
  3. using System;
  4. using Fort23.GameData;
  5. namespace Excel2Json
  6. {
  7. [Config(prefab = "LanguageChineseConfig_skill.json")]
  8. public partial class LanguageChineseConfig_skillHolder : ConfigHolder<LanguageChineseConfig_skill> {
  9. }
  10. [Serializable]
  11. public struct LanguageChineseConfig_skill : 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 string txt;
  26. #else
  27. public string txt{ set; get; }
  28. #endif
  29. }
  30. }
  31. // End of Auto Generated Code