4jcraft/targets/minecraft/world/level/tile/TransparentTile.h
2026-04-01 13:27:58 -05:00

19 lines
466 B
C++

#pragma once
#include "Tile.h"
class Material;
class TransparentTile : public Tile {
protected:
bool allowSame;
protected:
TransparentTile(int id, Material* material, bool allowSame,
bool isSolidRender = false);
public:
virtual bool isSolidRender(bool isServerLevel = false);
virtual bool shouldRenderFace(LevelSource* level, int x, int y, int z,
int face);
virtual bool blocksLight();
};