ISEbd-11_Rozhkova_D.S./ProjectSportCar/Program.cs

17 lines
424 B
C#
Raw Normal View History

2024-03-13 03:15:49 +04:00
namespace ProjectStormtrooper
{
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();
Application.Run(new FormStormtrooper());
}
}
}