Winforms launcher beginnings.

This commit is contained in:
Matthew Bowra-Dean
2010-10-26 03:04:49 +13:00
committed by Paul Chote
parent d93c42e89c
commit 439c366ba2
13 changed files with 5556 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Windows.Forms;
namespace OpenRA.Launcher
{
static class Program
{
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}