ModernUO/Projects/UOContent/Spells/Targeting/ISpellTarget.cs
2020-05-09 12:55:56 -07:00

7 lines
101 B
C#

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