the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "TileEntityRenderer.h"
3#include "ChestModel.h"
4
5class EnderChestRenderer : public TileEntityRenderer
6{
7private:
8 static ResourceLocation ENDER_CHEST_LOCATION;
9 ChestModel chestModel;
10
11public:
12 void render(shared_ptr<TileEntity> _chest, double x, double y, double z, float a, bool setColor, float alpha=1.0f, bool useCompiled = true); // 4J added setColor param
13};