TF-EssentialsX/Essentials/src/com/earth2me/essentials/api/ITeleport.java

11 lines
246 B
Java
Raw Normal View History

package com.earth2me.essentials.api;
import org.bukkit.Location;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
public interface ITeleport
{
void now(Location loc, boolean cooldown, TeleportCause cause) throws Exception;
}