Primarily a bug fix check-in

This commit is contained in:
Scionwest_cp 2012-03-10 14:23:13 -08:00
parent bcd9f46b0a
commit 9b475691d5
10 changed files with 35 additions and 48 deletions

View file

@ -10,7 +10,7 @@ using MudEngine.Core;
namespace MudEngine.Game.Environment
{
public class Zone : BaseScript, IGameComponent, ISavable, IUpdatable
public class Zone : Environment
{
/// <summary>
/// Gets or Sets the what stats
@ -26,26 +26,6 @@ namespace MudEngine.Game.Environment
this._RoomCollection = new List<Room>();
}
public void Initialize()
{
throw new NotImplementedException();
}
public void Destroy()
{
throw new NotImplementedException();
}
public string Filename
{
get { throw new NotImplementedException(); }
}
public void Update()
{
throw new NotImplementedException();
}
public Room CreateRoom(String name, String description)
{
Room room = new Room(this.Game, name, description, this);