Realm Explorer:

- Implemented UI designs.
This commit is contained in:
Scionwest_cp 2009-11-27 21:29:18 -08:00
parent ced376e72a
commit 2f6dc95adb
8 changed files with 367 additions and 24 deletions

View file

@ -6,14 +6,21 @@ using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MUDEngine;
using MUDEngine.Objects.Environment;
namespace ZoneBuilder
{
public partial class frmMain : Form
{
Zone _CurrentZone;
Room _CurrentRoom;
public frmMain()
{
InitializeComponent();
_CurrentRoom = new Room();
_CurrentZone = new Zone();
}
}
}