Skip to content

Commit

Permalink
Update IPrimerDriver.java
Browse files Browse the repository at this point in the history
  • Loading branch information
strubium authored Feb 1, 2024
1 parent bbe7d1f commit 2449418
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,29 @@ public interface IPrimerDriver {

int getZ();

void setBlockRange(int x, int y, int z, int y2, char c);

void setBlockRangeSafe(int x, int y, int z, int y2, char c);

/// Set a block at the current position
IPrimerDriver block(char c);

/// Set a block at the current position
IPrimerDriver block(IBlockState c);

/// Set a block at the current position and increase the height with 1
IPrimerDriver add(char c);

char getBlock();

char getBlockDown();
char getBlockEast();
char getBlockWest();
char getBlockSouth();
char getBlockNorth();

char getBlock(int x, int y, int z);

IIndex getIndex(int x, int y, int z);

IPrimerDriver copy();
Expand Down

0 comments on commit 2449418

Please sign in to comment.