Files
MinecraftCommunityEdition-c…/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/WebTile_SPU.h
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

15 lines
330 B
C++

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