diff --git a/src/main/resources/assets/phycon/blockstates/switch.json b/src/main/resources/assets/phycon/blockstates/switch.json new file mode 100644 index 0000000..c327b46 --- /dev/null +++ b/src/main/resources/assets/phycon/blockstates/switch.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "phycon:block/switch" + } + } +} diff --git a/src/main/resources/assets/phycon/models/block/switch.json b/src/main/resources/assets/phycon/models/block/switch.json new file mode 100644 index 0000000..bf55216 --- /dev/null +++ b/src/main/resources/assets/phycon/models/block/switch.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "phycon:block/switch" + } +} diff --git a/src/main/resources/assets/phycon/models/item/switch.json b/src/main/resources/assets/phycon/models/item/switch.json new file mode 100644 index 0000000..b8843aa --- /dev/null +++ b/src/main/resources/assets/phycon/models/item/switch.json @@ -0,0 +1,3 @@ +{ + "parent": "phycon:block/switch" +} diff --git a/src/main/resources/assets/phycon/textures/block/switch.png b/src/main/resources/assets/phycon/textures/block/switch.png new file mode 100644 index 0000000..097376b Binary files /dev/null and b/src/main/resources/assets/phycon/textures/block/switch.png differ