using HeuristicLab.PluginInfrastructure; using System.Windows; using System; using HeuristicLab.MainForm.WPF; namespace HeuristicLab.OKB.Cockpit { [Application("OKB Cockpit")] public class CockpitApplication : ApplicationBase { [STAThread] public static void Main() { new CockpitApplication().Run(); } public override void Run() { Application a = new Application(); Window w = new CockpitMainWindow(); a.Run(w); } } }