| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //------------------------------------------------------------------------------
- // <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 partial struct TempPoolParam
- {
- public TempPoolParam(JSONNode _buf)
- {
- { if(!_buf["GeneralCfgId"].IsNumber) { throw new SerializationException(); } GeneralCfgId = _buf["GeneralCfgId"]; }
- { if(!_buf["Level"].IsNumber) { throw new SerializationException(); } Level = _buf["Level"]; }
- { if(!_buf["Star"].IsNumber) { throw new SerializationException(); } Star = _buf["Star"]; }
- }
- public static TempPoolParam DeserializeTempPoolParam(JSONNode _buf)
- {
- return new TempPoolParam(_buf);
- }
- public readonly int GeneralCfgId;
- public readonly int Level;
- public readonly int Star;
-
- public void ResolveRef(Tables tables)
- {
- }
- public override string ToString()
- {
- return "{ "
- + "GeneralCfgId:" + GeneralCfgId + ","
- + "Level:" + Level + ","
- + "Star:" + Star + ","
- + "}";
- }
- }
- }
|