Realm Explorer:
- Implemented UI designs.
This commit is contained in:
parent
ced376e72a
commit
2f6dc95adb
8 changed files with 367 additions and 24 deletions
|
@ -6,14 +6,32 @@ using System.Drawing;
|
|||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using MUDEngine.Objects.Environment;
|
||||
using MUDEngine;
|
||||
|
||||
namespace RealmExplorer
|
||||
{
|
||||
public partial class frmMain : Form
|
||||
{
|
||||
Zone _Zone;
|
||||
Realm _Realm;
|
||||
|
||||
public frmMain()
|
||||
{
|
||||
InitializeComponent();
|
||||
_Zone = new Zone();
|
||||
_Realm = new Realm();
|
||||
}
|
||||
|
||||
private void btnNewRealm_Click(object sender, EventArgs e)
|
||||
{
|
||||
_Zone = new Zone();
|
||||
_Realm = new Realm();
|
||||
}
|
||||
|
||||
private void splitContainer1_SplitterMoved(object sender, SplitterEventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue