the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 14 lines 384 B view raw
1#pragma once 2#include "Tile.h" 3 4class TransparentTile : public Tile 5{ 6protected: 7 bool allowSame; 8protected: 9 TransparentTile(int id, Material *material, bool allowSame, bool isSolidRender = false); 10public: 11 virtual bool isSolidRender(bool isServerLevel = false); 12 virtual bool shouldRenderFace(LevelSource *level, int x, int y, int z, int face); 13 virtual bool blocksLight(); 14};