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
5class WebTile_SPU : public Tile_SPU
6{
7
8public:
9 WebTile_SPU(int id) : Tile_SPU(id) {}
10 bool isSolidRender(bool isServerLevel = false) { return false;}
11 int getRenderShape() { return Tile_SPU::SHAPE_CROSS_TEXTURE; }
12 bool blocksLight() { return false;}
13 bool isCubeShaped() { return false;}
14
15};