65 lines
1.3 KiB
C#
65 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;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
namespace cfg
|
|
{
|
|
|
|
public sealed partial class Line : Luban.BeanBase
|
|
{
|
|
public Line(JToken _buf)
|
|
{
|
|
JObject _obj = _buf as JObject;
|
|
Id = (int)_obj.GetValue("id");
|
|
Strength = (int)_obj.GetValue("strength");
|
|
Size = (int)_obj.GetValue("size");
|
|
}
|
|
|
|
public static Line DeserializeLine(JToken _buf)
|
|
{
|
|
return new Line(_buf);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
public readonly int Id;
|
|
/// <summary>
|
|
/// 强度
|
|
/// </summary>
|
|
public readonly int Strength;
|
|
/// <summary>
|
|
/// 尺寸
|
|
/// </summary>
|
|
public readonly int Size;
|
|
|
|
|
|
public const int __ID__ = 2368532;
|
|
public override int GetTypeId() => __ID__;
|
|
|
|
public void ResolveRef(Tables tables)
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "{ "
|
|
+ "id:" + Id + ","
|
|
+ "strength:" + Strength + ","
|
|
+ "size:" + Size + ","
|
|
+ "}";
|
|
}
|
|
}
|
|
}
|
|
|