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"
3class Inventory;
4class Level;
5
6class CraftingScreen : public AbstractContainerScreen
7{
8public:
9 CraftingScreen(shared_ptr<Inventory> inventory, Level *level, int x, int y, int z);
10 virtual void removed();
11protected:
12 virtual void renderLabels();
13 virtual void renderBg(float a);
14};