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

net.minecraft.server.IChunkProvider Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package net.minecraft.server;

import java.util.List;

public interface IChunkProvider {

    boolean isChunkLoaded(int i, int j);

    Chunk getOrCreateChunk(int i, int j);

    Chunk getChunkAt(BlockPosition blockposition);

    void getChunkAt(IChunkProvider ichunkprovider, int i, int j);

    boolean a(IChunkProvider ichunkprovider, Chunk chunk, int i, int j);

    boolean saveChunks(boolean flag, IProgressUpdate iprogressupdate);

    boolean unloadChunks();

    boolean canSave();

    String getName();

    List getMobsFor(EnumCreatureType enumcreaturetype, BlockPosition blockposition);

    BlockPosition findNearestMapFeature(World world, String s, BlockPosition blockposition);

    int getLoadedChunks();

    void recreateStructures(Chunk chunk, int i, int j);

    void c();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy