61 lines
1.8 KiB
C#
61 lines
1.8 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 SimpleJSON;
|
|
|
|
|
|
namespace cfg
|
|
{
|
|
public sealed partial class Bobber : Luban.BeanBase
|
|
{
|
|
public Bobber(JSONNode _buf)
|
|
{
|
|
{ if(!_buf["id"].IsNumber) { throw new SerializationException(); } Id = _buf["id"]; }
|
|
{ if(!_buf["displacement"].IsNumber) { throw new SerializationException(); } Displacement = _buf["displacement"]; }
|
|
{ var __json0 = _buf["night_light"]; if(!__json0.IsArray) { throw new SerializationException(); } NightLight = new System.Collections.Generic.List<float>(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { float __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } NightLight.Add(__v0); } }
|
|
}
|
|
|
|
public static Bobber DeserializeBobber(JSONNode _buf)
|
|
{
|
|
return new Bobber(_buf);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
public readonly int Id;
|
|
/// <summary>
|
|
/// 位移
|
|
/// </summary>
|
|
public readonly int Displacement;
|
|
/// <summary>
|
|
/// 是否夜光
|
|
/// </summary>
|
|
public readonly System.Collections.Generic.List<float> NightLight;
|
|
|
|
public const int __ID__ = 1995051738;
|
|
public override int GetTypeId() => __ID__;
|
|
|
|
public void ResolveRef(Tables tables)
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "{ "
|
|
+ "id:" + Id + ","
|
|
+ "displacement:" + Displacement + ","
|
|
+ "nightLight:" + Luban.StringUtil.CollectionToString(NightLight) + ","
|
|
+ "}";
|
|
}
|
|
}
|
|
}
|
|
|