set blocks

This commit is contained in:
Jesse Boyd
2019-05-02 04:19:15 +10:00
parent f96760b36c
commit adb2c37a02
7 changed files with 221 additions and 75 deletions

View File

@ -30,6 +30,10 @@ public class CharBlocks implements IBlocks {
for (int i = 0; i < 16; i++) sections[i] = NULL;
}
public void reset(int layer) {
sections[layer] = NULL;
}
protected char[] load(int layer) {
return new char[4096];
}