IndieGame/client/Assets/Scripts/AutoGenerated/Table/GlobalConfigTable.cs

50 lines
1.2 KiB
C#
Raw Normal View History

2024-10-11 10:12:15 +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 TableConfig
{
public sealed partial class GlobalConfigTable : Luban.BeanBase
{
public GlobalConfigTable(JSONNode _buf)
{
{ if(!_buf["BackPackGridBaseNum"].IsNumber) { throw new SerializationException(); } BackPackGridBaseNum = _buf["BackPackGridBaseNum"]; }
}
public static GlobalConfigTable DeserializeGlobalConfigTable(JSONNode _buf)
{
return new GlobalConfigTable(_buf);
}
/// <summary>
/// 背包基础格子数量
/// </summary>
public readonly int BackPackGridBaseNum;
public const int __ID__ = -132591127;
public override int GetTypeId() => __ID__;
public void ResolveRef(Tables tables)
{
}
public override string ToString()
{
return "{ "
+ "BackPackGridBaseNum:" + BackPackGridBaseNum + ","
+ "}";
}
}
}