muddesigner/RealmExplorer/Program.cs
Scionwest_cp a45f867bb1 Added two new projects to the solution.
Realm Explorer added.
Zone Builder added.
2009-11-27 20:55:01 -08:00

21 lines
507 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace RealmExplorer
{
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());
}
}
}