Designer:
- Redesigned Doorway Manager - Reworked the Door class - Reworked the Room Class.
This commit is contained in:
parent
2a88141b02
commit
de726021df
3 changed files with 14 additions and 38 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue