Newer
Older
Import / projects / Gameloft / bne_lib / tools / AutobotServer / Program.cs
@John John on 29 Dec 2020 536 bytes bulk import from macbookpro checkouts
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace AutobotServer
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}