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

io.papermc.lib.features.asyncchunks.AsyncChunksPaper_15 Maven / Gradle / Ivy

package io.papermc.lib.features.asyncchunks;

import org.bukkit.Chunk;
import org.bukkit.World;

import java.util.concurrent.CompletableFuture;

public class AsyncChunksPaper_15 implements AsyncChunks {
    @Override
    public CompletableFuture getChunkAtAsync(World world, int x, int z, boolean gen, boolean isUrgent) {
        return world.getChunkAtAsync(x, z, gen, isUrgent);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy