17 lines
372 B
C#
Raw Permalink Normal View History

2023-11-14 12:52:50 +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();
Application.Run(new FormDoubleDeckerBus());
}
}
}