PC-20230316NUNE\Administrator 6da2f9e691 提交
2024-10-16 20:41:40 +08:00

63 lines
1.3 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;
namespace GameConfig.TB
{
public sealed partial class TbGGlobal : Luban.BeanBase
{
public TbGGlobal(ByteBuf _buf)
{
Id = _buf.ReadInt();
Args = _buf.ReadString();
Tig = _buf.ReadString();
}
public static TbGGlobal DeserializeTbGGlobal(ByteBuf _buf)
{
return new TB.TbGGlobal(_buf);
}
/// <summary>
/// id
/// </summary>
public readonly int Id;
/// <summary>
/// 全局表参数
/// </summary>
public readonly string Args;
/// <summary>
/// 描述
/// </summary>
public readonly string Tig;
public const int __ID__ = 1682089212;
public override int GetTypeId() => __ID__;
public void ResolveRef(Tables tables)
{
}
public override string ToString()
{
return "{ "
+ "id:" + Id + ","
+ "args:" + Args + ","
+ "tig:" + Tig + ","
+ "}";
}
}
}