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