feat: Standardizes South/East selection gumps (#1839)

This commit is contained in:
Kamron Batman 2025-02-14 00:15:14 -08:00 committed by GitHub
parent 279b10dd0f
commit 2e08eda8cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 263 additions and 520 deletions

View file

@ -0,0 +1,8 @@
namespace Server.Items;
public interface IDirectionAddonDeed : IEntity
{
public bool East { get; set; }
public void SendTarget(Mobile m);
}