mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
56 lines
1.2 KiB
C#
56 lines
1.2 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 TbGRoleUpStar : Luban.BeanBase
|
|
{
|
|
public TbGRoleUpStar(ByteBuf _buf)
|
|
{
|
|
Grade = _buf.ReadInt();
|
|
Merge = _buf.ReadInt();
|
|
}
|
|
|
|
public static TbGRoleUpStar DeserializeTbGRoleUpStar(ByteBuf _buf)
|
|
{
|
|
return new TB.TbGRoleUpStar(_buf);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 宠物星级
|
|
/// </summary>
|
|
public readonly int Grade;
|
|
/// <summary>
|
|
/// 合成数量
|
|
/// </summary>
|
|
public readonly int Merge;
|
|
|
|
public const int __ID__ = 387566716;
|
|
public override int GetTypeId() => __ID__;
|
|
|
|
public void ResolveRef(Tables tables)
|
|
{
|
|
|
|
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "{ "
|
|
+ "grade:" + Grade + ","
|
|
+ "merge:" + Merge + ","
|
|
+ "}";
|
|
}
|
|
}
|
|
|
|
}
|