This commit is contained in:
Scionwest_cp 2009-12-08 10:34:20 -08:00
parent dbe4a45738
commit c7f5a9b2a7
24 changed files with 566 additions and 1315 deletions

View file

@ -5,7 +5,7 @@ using System.Text;
using System.ComponentModel;
namespace MudDesigner.MudEngine.Objects.Environment
namespace MudDesigner.MudEngine.GameObjects.Environment
{
public class Door
{
@ -38,6 +38,15 @@ namespace MudDesigner.MudEngine.Objects.Environment
set;
}
[Category("Door Settings")]
[DefaultValue(false)]
public bool IsRealmEntrance
{ get; set; }
[Category("Door Settings")]
[DefaultValue(false)]
public bool IsRealmExit { get; set; }
[Category("Door Settings")]
[Description("Sets if the door is installed and useable within the room or not.")]
[DefaultValue(AvailableDoorStates.Uninstalled)]