2023-11-11 16:50:29 +04: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:49:03 +04:00
|
|
|
Application.Run(new DDBus());
|
2023-11-11 16:50:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|