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