ModernUO/Scripts/Spells/Targeting/IRecallSpell.cs
2019-03-15 15:23:03 -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();
}
}