mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-02-16 10:30:42 +00:00
create Column
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user