ModernUO/Projects/UOContent/Spells/Targeting/IRecallSpell.cs
2020-08-27 18:30:38 -07:00

9 lines
196 B
C#

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