public override void Prepare() { var misc = new Components.Misc(vgcApi, settings, formMgr); var web = new Components.Web(vgcApi); var server = new Components.Server(vgcApi); AddChild(misc); AddChild(web); AddChild(server); }
public override void Prepare() { var misc = new Components.Misc(settings, vgcApi); var json = new Components.Json(vgcApi); var web = new Components.Web(vgcApi); var server = new Components.Server(vgcApi); Plug(this, misc); Plug(this, json); Plug(this, web); Plug(this, server); }
public override void Prepare() { var misc = new Components.Misc(settings, vgcApi); var json = new Components.Json(vgcApi); var web = new Components.Web(vgcApi); var server = new Components.Server(vgcApi); AddChild(misc); AddChild(json); AddChild(web); AddChild(server); }