//------------------------------------------------------------------------------ // // 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 TableConfig { public sealed partial class GlobalConfigTable : Luban.BeanBase { public GlobalConfigTable(JSONNode _buf) { { if(!_buf["BackPackGridBaseNum"].IsNumber) { throw new SerializationException(); } BackPackGridBaseNum = _buf["BackPackGridBaseNum"]; } } public static GlobalConfigTable DeserializeGlobalConfigTable(JSONNode _buf) { return new GlobalConfigTable(_buf); } /// /// 背包基础格子数量 /// public readonly int BackPackGridBaseNum; public const int __ID__ = -132591127; public override int GetTypeId() => __ID__; public void ResolveRef(Tables tables) { } public override string ToString() { return "{ " + "BackPackGridBaseNum:" + BackPackGridBaseNum + "," + "}"; } } }