2024-02-21 16:18:32 +04:00
|
|
|
namespace AntiAircraftGun
|
|
|
|
{
|
|
|
|
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-22 15:19:29 +04:00
|
|
|
Application.Run(new FormAntiAircraftGun());
|
2024-02-21 16:18:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|