ModernUO/Scripts/Regions/TownRegion.cs
2006-06-15 04:14:30 +00:00

13 lines
No EOL
231 B
C#

using System;
using System.Xml;
using Server;
namespace Server.Regions
{
public class TownRegion : GuardedRegion
{
public TownRegion( XmlElement xml, Map map, Region parent ) : base( xml, map, parent )
{
}
}
}