cn.nukkit.level.format.Chunk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.level.format;
/**
* @author MagicDroidX (Nukkit Project)
*/
public interface Chunk extends FullChunk {
byte SECTION_COUNT = 16;
boolean isSectionEmpty(float fY);
ChunkSection getSection(float fY);
boolean setSection(float fY, ChunkSection section);
ChunkSection[] getSections();
class Entry {
public final int chunkX;
public final int chunkZ;
public Entry(int chunkX, int chunkZ) {
this.chunkX = chunkX;
this.chunkZ = chunkZ;
}
}
}