2023-11-24 11:49:06 +04:00
|
|
|
namespace Airbus_Base
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
ApplicationConfiguration.Initialize();
|
2023-11-27 13:18:25 +04:00
|
|
|
Application.Run(new FormAirbus());
|
2023-11-24 11:49:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|