//------------------------------------------------------------------------------ // <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 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); } /// <summary> /// id /// </summary> public readonly int Id; /// <summary> /// 全局表参数 /// </summary> public readonly string Args; /// <summary> /// 描述 /// </summary> 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 + "," + "}"; } } }