4jcraft/Minecraft.Client/Platform/PS3/SPU_Tasks/ChunkUpdate/LadderTile_SPU.h
2026-03-05 03:29:23 -05:00

13 lines
374 B
C++

#pragma once
#include "Tile_SPU.h"
class LadderTile_SPU : public Tile_SPU
{
public:
LadderTile_SPU(int id) : Tile_SPU(id) {}
virtual bool blocksLight() { return false; }
virtual bool isSolidRender(bool isServerLevel = false) { return false; }
virtual bool isCubeShaped() { return false; }
virtual int getRenderShape() { return Tile_SPU::SHAPE_LADDER; }
};