Newer
Older
Import / projects / Gameloft / bne_lib / tools / AutobotManager / src / Program.cs
@John John on 29 Dec 2020 651 bytes bulk import from macbookpro checkouts
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);
    }
  }
}