//------------------------------------------------------------------------------
//
// 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;
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);
}
///
/// ID等级
///
public readonly int ID;
///
/// 弹出三选一需要的经验
///
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 + ","
+ "}";
}
}
}