8 lines
150 B
C#
8 lines
150 B
C#
namespace Server.Items;
|
|
|
|
public interface IDirectionAddonDeed : IEntity
|
|
{
|
|
public bool East { get; set; }
|
|
|
|
public void SendTarget(Mobile m);
|
|
}
|