implement ChunkAccess

This commit is contained in:
dfsek
2021-01-24 01:58:51 -07:00
parent da5d3fe0ce
commit ce62f1d7ac
7 changed files with 77 additions and 27 deletions
@@ -1,4 +1,7 @@
package com.dfsek.terra.carving;
import com.dfsek.terra.api.platform.world.ChunkAccess;
public interface Carver {
void carve(int chunkX, int chunkZ, ChunkAccess chunk);
}