//------------------------------------------------------------------------------ // // 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 { public sealed partial class BBuild : Luban.BeanBase { public BBuild(JSONNode _buf) { { if(!_buf["ID"].IsNumber) { throw new SerializationException(); } ID = _buf["ID"]; } { if(!_buf["Buildingsum"].IsNumber) { throw new SerializationException(); } Buildingsum = _buf["Buildingsum"]; } } public static BBuild DeserializeBBuild(JSONNode _buf) { return new BBuild(_buf); } /// /// ID /// public readonly int ID; /// /// 升级所需的等级总和 /// public readonly int Buildingsum; public const int __ID__ = 1954066252; public override int GetTypeId() => __ID__; public void ResolveRef(Tables tables) { } public override string ToString() { return "{ " + "ID:" + ID + "," + "Buildingsum:" + Buildingsum + "," + "}"; } } }