Designer:

- Redesigned Doorway Manager
 - Reworked the Door class
 - Reworked the Room Class.
This commit is contained in:
Scionwest_cp 2010-01-21 22:02:36 -08:00
parent 2a88141b02
commit de726021df
3 changed files with 14 additions and 38 deletions

View file

@ -36,6 +36,12 @@ namespace MudDesigner.MudEngine.GameObjects.Environment
}
}
public AvailableTravelDirections Directions
{
get;
set;
}
[Category("Environment Information")]
[Description("Allows for linking of Rooms together via Doorways")]
public List<Door> Doorways
@ -75,6 +81,7 @@ namespace MudDesigner.MudEngine.GameObjects.Environment
public Room()
{
Doorways = new List<Door>();
IsSafe = false;
}
}