the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 16 lines 471 B view raw
1#include "TileEntityRenderer.h" 2 3class PistonPieceEntity; 4class TileRenderer; 5 6class PistonPieceRenderer : public TileEntityRenderer 7{ 8private: 9 static ResourceLocation SIGN_LOCATION; 10 TileRenderer *tileRenderer; 11 12public: 13 PistonPieceRenderer(); 14 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 15 virtual void onNewLevel(Level *level); 16};