Chunk 16x256x16
This commit is contained in:
12
core/src/main/java/mc/core/world/Chunk.java
Normal file
12
core/src/main/java/mc/core/world/Chunk.java
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user