the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "Material.h"
3
4class DecorationMaterial : public Material
5{
6public:
7 DecorationMaterial(MaterialColor *color) : Material(color) { makeDestroyedByHand(); }
8
9 virtual bool isSolid() { return false; }
10 virtual bool blocksLight() { return false; }
11 virtual bool blocksMotion() { return false; }
12};