1234567891011121314151617181920212223242526272829303132333435363738 |
- // Auto Generated Code By excel2json
- // Generate From Excel\Battlepass.xlsx. SheetName: BattlePassExpConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "BattlePassExpConfig.json")]
- public partial class BattlePassExpConfigHolder : ConfigHolder<BattlePassExpConfig>
{
- }
- [Serializable]
- public struct BattlePassExpConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///ID
- /// </summary>
- public int ID;
- /// <summary>
- ///时间周编号 战令开启的当周为1
- /// </summary>
- public int WeekNum;
- /// <summary>
- ///战令在本周的经验上限
- /// </summary>
- public int ExpLimit;
- }
- }
- // End of Auto Generated Code
|