mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-20 15:35:08 +00:00
10 lines
246 B
Java
10 lines
246 B
Java
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;
|
|
}
|