Designer:

- Door Linking implementation started.
 - Duplicate directions are not allowed within a Room
 - If a User enters the name of a non-existing Room for linking to a Doorway, the Designer generates that Room for the User.
 - Room Editor now refreshes it's list of Rooms after the Doorway Manager closes so that auto generated Rooms are displayed.
 - Added new Doorway Manager UI

Engine:
 - Added Door.DoorwayExist() method to the Door class.
This commit is contained in:
Scionwest_cp 2010-01-21 23:33:14 -08:00
parent 0811af95b1
commit f919539a89
12 changed files with 512 additions and 25 deletions

View file

@ -2,6 +2,8 @@
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Drawing.Design;
//MudEngine
using MudDesigner.MudEngine;
using MudDesigner.MudEngine.FileSystem;
@ -17,7 +19,8 @@ namespace MudDesigner
static class Program
{
public static Designer Designer{ get; set; }
internal static Form CurrentEditor { get; set; }
/// <summary>
/// The main entry point for the application.
/// </summary>