Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
14 lines
384 B
C++
14 lines
384 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
|
|
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();
|
|
}; |