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