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 Container;
4
5class ContainerScreen : public AbstractContainerScreen
6{
7private:
8 shared_ptr<Container> inventory;
9 shared_ptr<Container> container;
10
11 int containerRows;
12
13public:
14 ContainerScreen(shared_ptr<Container>inventory, shared_ptr<Container>container);
15
16protected:
17 virtual void renderLabels();
18 virtual void renderBg(float a);
19};