9 lines
196 B
C#
9 lines
196 B
C#
namespace Server.Spells
|
|
{
|
|
public interface IRecallSpell
|
|
{
|
|
Mobile Caster { get; }
|
|
void Effect(Point3D loc, Map map, bool checkMulti);
|
|
void FinishSequence();
|
|
}
|
|
}
|