//------------------------------------------------------------------------------ // // 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 Bright.Serialization; using System.Collections.Generic; using SimpleJSON; namespace cfg { /// /// 快速自动建造的开关 /// public sealed partial class MMTFastAutoBuildSwitch : MMTHub { public MMTFastAutoBuildSwitch(JSONNode _json) : base(_json) { PostInit(); } public MMTFastAutoBuildSwitch() : base() { PostInit(); } public static MMTFastAutoBuildSwitch DeserializeMMTFastAutoBuildSwitch(JSONNode _json) { return new MMTFastAutoBuildSwitch(_json); } public const int __ID__ = -906376509; public override int GetTypeId() => __ID__; public override void Resolve(Dictionary _tables) { base.Resolve(_tables); PostResolve(); } public override void TranslateText(System.Func translator) { base.TranslateText(translator); } public override string ToString() { return "{ " + "}"; } partial void PostInit(); partial void PostResolve(); } }