56 lines
1.4 KiB
C#
Raw Normal View History

2024-12-10 17:46:37 +08:00
//------------------------------------------------------------------------------
// <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;
using SimpleJSON;
namespace cfg.BlacksmithData
{
public sealed partial class ExpRogueData : Luban.BeanBase
{
public ExpRogueData(JSONNode _buf)
{
{ if(!_buf["ID"].IsNumber) { throw new SerializationException(); } ID = _buf["ID"]; }
{ if(!_buf["Developexp"].IsNumber) { throw new SerializationException(); } Developexp = _buf["Developexp"]; }
}
public static ExpRogueData DeserializeExpRogueData(JSONNode _buf)
{
return new BlacksmithData.ExpRogueData(_buf);
}
/// <summary>
/// ID等级
/// </summary>
public readonly int ID;
/// <summary>
/// 弹出三选一需要的经验
/// </summary>
public readonly int Developexp;
public const int __ID__ = 1600548807;
public override int GetTypeId() => __ID__;
public void ResolveRef(Tables tables)
{
}
public override string ToString()
{
return "{ "
+ "ID:" + ID + ","
+ "Developexp:" + Developexp + ","
+ "}";
}
}
}