public static void Main()
        {
            SplashScreen splashScreen = new SplashScreen("resources/openingscreen.jpg");

            splashScreen.Show(true);
            FlightSimulatorApp.App app = new FlightSimulatorApp.App();
            app.InitializeComponent();
            app.Run();
        }
Beispiel #2
0
 public static void Main()
 {
     FlightSimulatorApp.App app = new FlightSimulatorApp.App();
     app.InitializeComponent();
     app.Run();
 }