17 lines
372 B
C#
17 lines
372 B
C#
|
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());
|
||
|
}
|
||
|
}
|
||
|
}
|