mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-03 16:35:50 +00:00
create Column
This commit is contained in:
parent
f4f595425a
commit
fec5b138d2
@ -0,0 +1,16 @@
|
|||||||
|
package com.dfsek.terra.api.world;
|
||||||
|
|
||||||
|
import com.dfsek.terra.api.block.state.BlockState;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A single vertical column of a world.
|
||||||
|
*/
|
||||||
|
public interface Column {
|
||||||
|
int getX();
|
||||||
|
|
||||||
|
int getZ();
|
||||||
|
|
||||||
|
BlockState getBlock(int y);
|
||||||
|
|
||||||
|
World getWorld();
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user