the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 12 lines 322 B view raw
1#pragma once 2#include "Tile_SPU.h" 3 4 5class TorchTile_SPU : public Tile_SPU 6{ 7public: 8 TorchTile_SPU(int id) : Tile_SPU(id) {} 9 virtual bool isSolidRender(bool isServerLevel = false) { return false; } 10 virtual bool isCubeShaped() { return false; } 11 virtual int getRenderShape() { return Tile_SPU::SHAPE_TORCH;} 12};