#W# InnRegion
This commit is contained in:
parent
a254b9db25
commit
baffba9a2d
1 changed files with 37 additions and 0 deletions
37
Scripts/Regions/InnRegion.cs
Normal file
37
Scripts/Regions/InnRegion.cs
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
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 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue