implement block placing and destroying

This commit is contained in:
LabyStudio
2022-02-01 00:57:25 +01:00
parent 02c36a79ba
commit 4d93f2aeeb
13 changed files with 434 additions and 83 deletions
@@ -0,0 +1,11 @@
window.MovingObjectPosition = class {
constructor(vector, face, x, y, z) {
this.vector = vector;
this.face = face;
this.x = x;
this.y = y;
this.z = z;
}
}