Initial Check in of Mud Designer.

Includes initial Designer HOME and partial Project Manager
This commit is contained in:
Scionwest_cp 2009-11-05 19:44:22 -08:00
parent 29fb9f1625
commit c44c73c337
33 changed files with 1859 additions and 0 deletions

21
MudDesigner/Program.cs Normal file
View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace MudDesigner
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
}
}
}