17 lines
498 B
C#
Raw Normal View History

2022-09-03 18:49:03 +04:00
namespace ArmoredVehicle
{
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();
2022-09-05 09:20:40 +04:00
Application.Run(new MainForm());
2022-09-03 18:49:03 +04:00
}
}
}