mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
56 lines
1.3 KiB
C#
56 lines
1.3 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 TbGOnHookMap120001 : Luban.BeanBase
|
|
{
|
|
public TbGOnHookMap120001(ByteBuf _buf)
|
|
{
|
|
Id = _buf.ReadInt();
|
|
Data = TbGEntity.TOnHookLevel.DeserializeTOnHookLevel(_buf);
|
|
}
|
|
|
|
public static TbGOnHookMap120001 DeserializeTbGOnHookMap120001(ByteBuf _buf)
|
|
{
|
|
return new TB.TbGOnHookMap120001(_buf);
|
|
}
|
|
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
public readonly int Id;
|
|
/// <summary>
|
|
/// 关卡等级
|
|
/// </summary>
|
|
public readonly TbGEntity.TOnHookLevel Data;
|
|
|
|
public const int __ID__ = 196461379;
|
|
public override int GetTypeId() => __ID__;
|
|
|
|
public void ResolveRef(Tables tables)
|
|
{
|
|
|
|
Data?.ResolveRef(tables);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "{ "
|
|
+ "id:" + Id + ","
|
|
+ "data:" + Data + ","
|
|
+ "}";
|
|
}
|
|
}
|
|
|
|
}
|