//------------------------------------------------------------------------------ // // 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 TbGAttribute : Luban.BeanBase { public TbGAttribute(ByteBuf _buf) { Id = _buf.ReadInt(); Name = _buf.ReadString(); Sign = _buf.ReadString(); } public static TbGAttribute DeserializeTbGAttribute(ByteBuf _buf) { return new TB.TbGAttribute(_buf); } /// /// id /// public readonly int Id; /// /// 属性名称 /// public readonly string Name; /// /// 属性标识 /// public readonly string Sign; public const int __ID__ = 1361501859; public override int GetTypeId() => __ID__; public void ResolveRef(Tables tables) { } public override string ToString() { return "{ " + "id:" + Id + "," + "name:" + Name + "," + "sign:" + Sign + "," + "}"; } } }