1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // Auto Generated Code By excel2json
- // Generate From Excel\Tower.xlsx. SheetName: TowerConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "TowerConfig.json")]
- public partial class TowerConfigHolder : ConfigHolder<TowerConfig>
{
- }
- [Serializable]
- public struct TowerConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///modelID
- /// </summary>
- public int ID;
- /// <summary>
- ///
- /// </summary>
- public int name;
- /// <summary>
- ///
- /// </summary>
- public int massge;
- /// <summary>
- ///塔的详情效果Id组
- /// </summary>
- public int towerinfoIdGroup;
- }
- }
- // End of Auto Generated Code
|