ModernUO/Projects/UOContent/Spells/Targeting/IRecallSpell.cs
2020-08-25 18:00:51 -07:00

9 lines
178 B
C#

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