17 lines
372 B
C#
Raw Normal View History

2023-11-11 15:50:29 +03:00
using System.Drawing;
namespace DoubleDeckerBus
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2023-11-11 21:37:44 +03:00
Application.Run(new FormDoubleDeckerBus());
2023-11-11 15:50:29 +03:00
}
}
}