the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "AbstractContainerScreen.h"
3
4class FurnaceTileEntity;
5class Inventory;
6
7class FurnaceScreen : public AbstractContainerScreen
8{
9private:
10 shared_ptr<FurnaceTileEntity> furnace;
11
12public:
13 FurnaceScreen(shared_ptr<Inventory> inventory, shared_ptr<FurnaceTileEntity> furnace);
14protected:
15 virtual void renderLabels();
16 virtual void renderBg(float a);
17};