//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
using Luban;
namespace GameConfig.TB
{
public sealed partial class TbGOnHookGlobal : Luban.BeanBase
{
public TbGOnHookGlobal(ByteBuf _buf)
{
Id = _buf.ReadInt();
Args = _buf.ReadString();
Tig = _buf.ReadString();
}
public static TbGOnHookGlobal DeserializeTbGOnHookGlobal(ByteBuf _buf)
{
return new TB.TbGOnHookGlobal(_buf);
}
///
/// id
///
public readonly int Id;
///
/// 全局表参数
///
public readonly string Args;
///
/// 描述
///
public readonly string Tig;
public const int __ID__ = -340649858;
public override int GetTypeId() => __ID__;
public void ResolveRef(Tables tables)
{
}
public override string ToString()
{
return "{ "
+ "id:" + Id + ","
+ "args:" + Args + ","
+ "tig:" + Tig + ","
+ "}";
}
}
}