Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
391 B · 19 lines
C
at main
12345678910111213141516171819#pragma once#include "AbstractContainerScreen.h"class Container;
class ContainerScreen : public AbstractContainerScreen{private: shared_ptr<Container> inventory; shared_ptr<Container> container;
int containerRows;
public: ContainerScreen(shared_ptr<Container>inventory, shared_ptr<Container>container);
protected: virtual void renderLabels(); virtual void renderBg(float a);};