using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace AutobotManager
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Form1 pForm = new Form1();
if (args.Length > 0)
{
pForm.m_sCommandArgs = new string[args.Length];
args.CopyTo(pForm.m_sCommandArgs, 0);
}
Application.Run(pForm);
}
}
}