GameTipsConfig.cs 774 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Auto Generated Code By excel2json
  2. // Generate From Excel\LanguageStartGame.xlsx. SheetName: GameTipsConfig
  3. using System;
  4. using Fort23.GameData;
  5. namespace Excel2Json
  6. {
  7. [Config(prefab = "GameTipsConfig.json")]
  8. public partial class GameTipsConfigHolder : ConfigHolder<GameTipsConfig> {
  9. }
  10. [Serializable]
  11. public struct GameTipsConfig : IConfig {
  12. public int GetID() {return ID;}
  13. /// <summary>
  14. ///ID
  15. /// </summary>
  16. public int ID;
  17. /// <summary>
  18. ///最低和最高出现等级 5:5级开始出现一直到任何等级 5;60:5级开始出现一直到60级,61级开始不出现
  19. /// </summary>
  20. public int[] showLevel;
  21. /// <summary>
  22. ///描述-中文
  23. /// </summary>
  24. public string txt;
  25. }
  26. }
  27. // End of Auto Generated Code