beginning of an editor

This commit is contained in:
Chris Forbes
2010-05-08 19:05:05 +12:00
parent 29d670dd79
commit f08247afd0
12 changed files with 780 additions and 0 deletions

21
OpenRA.Editor/Program.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace OpenRA.Editor
{
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());
}
}
}