ModernUO/Projects/UOContent/Items/Deeds/IDirectionAddonDeed.cs

8 lines
150 B
C#

namespace Server.Items;
public interface IDirectionAddonDeed : IEntity
{
public bool East { get; set; }
public void SendTarget(Mobile m);
}