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