ModernUO/Projects/Scripts/Spells/Targeting/IRecallSpell.cs
2020-04-26 00:16:02 -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();
}
}