implement creative inventory, implement bedrock, glass and gravel, version 1.0.4

This commit is contained in:
LabyStudio
2022-05-20 01:30:31 +02:00
parent f85d84e2a3
commit 34b0015af6
35 changed files with 601 additions and 76 deletions
@@ -0,0 +1,10 @@
export default class Slot {
constructor(inventory, index, x, y) {
this.inventory = inventory;
this.index = index;
this.x = x;
this.y = y;
}
}