ModernUO/Projects/UOContent/Spells/Targeting/ISpellTarget.cs
2020-08-27 18:30:38 -07:00

7 lines
104 B
C#

namespace Server.Spells
{
public interface ISpellTarget
{
ISpell Spell { get; }
}
}