All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.papermc.lib.features.asyncteleport.AsyncTeleport Maven / Gradle / Ivy

package io.papermc.lib.features.asyncteleport;

import org.bukkit.Location;
import org.bukkit.entity.Entity;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;

import java.util.concurrent.CompletableFuture;

public interface AsyncTeleport {
    CompletableFuture teleportAsync(Entity entity, Location location, TeleportCause cause);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy