Added two new projects to the solution.

Realm Explorer added.
Zone Builder added.
This commit is contained in:
Scionwest_cp 2009-11-27 20:55:01 -08:00
parent c4e423fc25
commit a45f867bb1
19 changed files with 986 additions and 0 deletions

21
ZoneBuilder/Program.cs Normal file
View file

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