1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- // Auto Generated Code By excel2json
- // Generate From Excel\BasicTask.xlsx. SheetName: NewPlayerTaskConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "NewPlayerTaskConfig.json")]
- public partial class NewPlayerTaskConfigHolder : ConfigHolder<NewPlayerTaskConfig>
{
- }
- [Serializable]
- public struct NewPlayerTaskConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///ID
- /// </summary>
- public int ID;
- /// <summary>
- ///第几套任务 1=新手任务1-7 2=新手任务8-14
- /// </summary>
- public int Order;
- /// <summary>
- ///第几节 (每天1节)
- /// </summary>
- public int Section;
- /// <summary>
- ///第几页
- /// </summary>
- public int Page;
- /// <summary>
- ///本页任务
- /// </summary>
- public int[] Tasks;
- /// <summary>
- ///积分道具ID
- /// </summary>
- public int ScoreItem;
- /// <summary>
- ///积分节点 第一套新手任务每页只能4个奖励节点
- /// </summary>
- public int[] KeyScore;
- /// <summary>
- ///积分奖励 (填奖励页ID)
- /// </summary>
- public int[] keyAward;
- }
- }
- // End of Auto Generated Code
|