17 lines
520 B
C#
Raw Normal View History

2023-11-14 13:11:54 +03:00
namespace DoubleDeckerbus
2023-11-14 12:52:50 +03:00
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
2023-11-25 13:13:49 +03:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
2023-11-14 12:52:50 +03:00
ApplicationConfiguration.Initialize();
2023-11-25 13:55:27 +03:00
Application.Run(new FormDoubleDeckerbusCollection());
2023-11-14 12:52:50 +03:00
}
}
}