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
17 lines
471 B
C++
17 lines
471 B
C++
#include "TileEntityRenderer.h"
|
|
|
|
class PistonPieceEntity;
|
|
class TileRenderer;
|
|
|
|
class PistonPieceRenderer : public TileEntityRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation SIGN_LOCATION;
|
|
TileRenderer *tileRenderer;
|
|
|
|
public:
|
|
PistonPieceRenderer();
|
|
virtual void render(shared_ptr<TileEntity> _entity, double x, double y, double z, float a, bool setColor, float alpha=1.0f, bool useCompiled = true); // 4J added setColor param
|
|
virtual void onNewLevel(Level *level);
|
|
};
|