RunUO/Scripts/Regions/InnRegion.cs
2026-08-27 21:36:07 -04:00

37 lines
816 B
C#

using System;
using System.Xml;
using Server;
namespace Server.Regions
{
public class InnRegion : Region
{
public InnRegion( XmlElement xml, Map map, Region parent ) : base( xml, map, parent )
{
}
public InnRegion( string name, Map map, int priority, params Rectangle3D[] area ) : base( name, map, priority, area )
{
}
public override TimeSpan GetLogoutDelay( Mobile m )
{
return TimeSpan.Zero;
}
public override bool AllowHousing( Mobile from, Point3D p )
{
return false;
}
public override void OnEnter( Mobile m )
{
base.OnEnter( m );
}
public override void OnExit( Mobile m )
{
base.OnExit( m );
}
}
}