2023-11-14 13:52:50 +04:00
|
|
|
using System.Drawing;
|
|
|
|
|
2023-11-14 14:11:54 +04:00
|
|
|
namespace DoubleDeckerbus
|
2023-11-14 13:52:50 +04:00
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
ApplicationConfiguration.Initialize();
|
|
|
|
Application.Run(new FormDoubleDeckerBus());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|