diff --git a/index.html b/index.html index 65f2444..a54d74d 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,16 @@ - + + Minecraft Armor Stand - - + + +
- - + + + \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 8630bcb..2d6d005 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,27 +1,46 @@ @@ -62,12 +81,17 @@ class Armorstand { return { x: 1, y: 1, z: 1 } } } + // Return the code to generate this armorstand + getCode(mcVersion) { + // TODO Handle different versions + } } export default { data() { return { armorstand: new Armorstand(), + mcVersion: "1.16", } }, components: { Scene, RotationSliderRow }, diff --git a/src/Scene.vue b/src/Scene.vue index 4fe4181..8335d19 100644 --- a/src/Scene.vue +++ b/src/Scene.vue @@ -1,12 +1,12 @@