the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 13 lines 328 B view raw
1#pragma once 2#include "TileEntityRenderer.h" 3 4class BeaconTileEntity; 5 6class BeaconRenderer : public TileEntityRenderer 7{ 8private: 9 static ResourceLocation BEAM_LOCATION; 10 11public: 12 virtual void render(shared_ptr<TileEntity> _beacon, double x, double y, double z, float a, bool setColor, float alpha, bool useCompiled); 13};