19 lines
390 B
C#
19 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MudDesigner.MudEngine.Objects.Environment
|
|
{
|
|
public class Zone : BaseObject
|
|
{
|
|
[System.ComponentModel.Browsable(false)]
|
|
public string Realm
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public List<Room> Rooms { get; set; }
|
|
}
|
|
}
|