Archived
0

Chunk 16x256x16

This commit is contained in:
Forwolk
2018-08-04 21:03:05 +03:00
parent be98784668
commit 895f59189d

View File

@@ -0,0 +1,12 @@
package mc.core.world;
public interface Chunk {
World getWorld();
ChunkSection getChunkSection(int height);
ChunkSection setChunkSection(int height, ChunkSection chunkSection);
Region getRegion();
int getX();
int getZ();
}