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

9 lines
187 B
C#

namespace Server.Spells
{
public interface IRecallSpell
{
Mobile Caster { get; }
void Effect(Point3D loc, Map map, bool checkMulti);
void FinishSequence();
}
}