add toArray, scanChunkInto usage coming soon

This commit is contained in:
Logan Darklock
2019-08-31 00:51:42 -07:00
parent 9f3eaac3df
commit ae6ee5688c
4 changed files with 63 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
package baritone.utils.accessor;
public interface IBitArray {
int[] toArray();
}

View File

@@ -11,7 +11,7 @@ public interface IBlockStateContainer {
IBlockState getFast(int index);
default IBlockState getFast(int x, int y, int z) {
return getFast(y << 8 | z << 4 | x);
};
IBlockState getAtPalette(int index);
int[] storageArray();
}