2024-02-27 12:54:24 +04:00
|
|
|
namespace AirBomber
|
|
|
|
{
|
|
|
|
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();
|
2024-02-27 13:03:57 +04:00
|
|
|
Application.Run(new FormAirBomber());
|
2024-02-27 12:54:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|