44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
|
|
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using Luban;
|
|
using SimpleJSON;
|
|
|
|
|
|
namespace cfg
|
|
{
|
|
public partial class GlobalTaskConfig
|
|
{
|
|
|
|
private readonly DataGlobalTaskConfig _data;
|
|
|
|
public DataGlobalTaskConfig Data => _data;
|
|
|
|
public GlobalTaskConfig(JSONNode _buf)
|
|
{
|
|
int n = _buf.Count;
|
|
if (n != 1) throw new SerializationException("table mode=one, but size != 1");
|
|
{ if(!_buf[0].IsObject) { throw new SerializationException(); } _data = global::cfg.DataGlobalTaskConfig.DeserializeDataGlobalTaskConfig(_buf[0]); }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 军旅成就右侧的tab列表显示内容<br/>这里的无代表全体
|
|
/// </summary>
|
|
public System.Collections.Generic.List<ActorCfg.TaskSubType> DisplayInMissonAchievementTabs => _data.DisplayInMissonAchievementTabs;
|
|
|
|
public void ResolveRef(Tables tables)
|
|
{
|
|
_data.ResolveRef(tables);
|
|
}
|
|
}
|
|
|
|
}
|
|
|