ModernUO/Projects/Scripts/Spells/Targeting/IRecallSpell.cs
2019-08-02 18:16:11 -07:00

9 lines
186 B
C#

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