- Room Linking development started

- Code Optimizations
 - Room Editor UI Tweaking
 - Doorway Editor added
 - Room Interface added.
 - Rooms now contain a Realm Property so that users can easily figure out what Realm a designated Room belongs to.
This commit is contained in:
Scionwest_cp 2010-01-19 18:44:18 -08:00
parent 6c8678a624
commit 2a88141b02
10 changed files with 517 additions and 27 deletions

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MudDesigner.MudEngine.Interfaces
{
public interface IRoom : IGameObject
{
}
}