18 lines
370 B
C#
18 lines
370 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Xml;
|
|
using Server;
|
|
using Server.Commands;
|
|
using Server.Mobiles;
|
|
using Server.Spells;
|
|
|
|
namespace Server.Regions
|
|
{
|
|
public class PirateRegion : MountlessRegion
|
|
{
|
|
public PirateRegion( XmlElement xml, Map map, Region parent ) : base( xml, map, parent )
|
|
{
|
|
}
|
|
}
|
|
}
|