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