NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/GlobalTaskConfig.cs

44 lines
1.2 KiB
C#
Raw Normal View History

2026-05-20 18:35:32 +08:00
//------------------------------------------------------------------------------
// <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>
2026-05-20 18:46:18 +08:00
/// 军旅成就右侧的tab列表显示内容<br/>这里的无代表全体
2026-05-20 18:35:32 +08:00
/// </summary>
public System.Collections.Generic.List<ActorCfg.TaskSubType> DisplayInMissonAchievementTabs => _data.DisplayInMissonAchievementTabs;
public void ResolveRef(Tables tables)
{
_data.ResolveRef(tables);
}
}
}