25 lines
841 B
C#
Raw Normal View History

2023-10-20 08:06:34 +04:00
<<<<<<<< HEAD:ProjectAntiAirCraftGun/Program.cs
2023-10-04 06:44:21 +04:00
2023-10-20 08:06:34 +04:00
========
>>>>>>>> 95bc229510ca5cbcf7ea504b21f471ecc7a7f53a:AntiAircraftGun/Program.cs
2023-10-04 06:44:21 +04:00
namespace ProjectAntiAircraftGun
2023-09-20 00:12:04 +04:00
{
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-10-20 08:06:34 +04:00
<<<<<<<< HEAD:ProjectAntiAirCraftGun/Program.cs
2023-10-04 06:44:21 +04:00
Application.Run(new FormTankCollection());
2023-10-20 08:06:34 +04:00
========
2023-10-04 06:44:21 +04:00
Application.Run(new FormAntiAircraftGun());
2023-10-20 08:06:34 +04:00
>>>>>>>> 95bc229510ca5cbcf7ea504b21f471ecc7a7f53a:AntiAircraftGun/Program.cs
2023-09-20 00:12:04 +04:00
}
}
}