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.
331 B · 14 lines
C
at main
1234567891011121314#pragma once#include "AbstractContainerScreen.h"class Inventory;class Level;
class CraftingScreen : public AbstractContainerScreen{public: CraftingScreen(shared_ptr<Inventory> inventory, Level *level, int x, int y, int z); virtual void removed();protected: virtual void renderLabels(); virtual void renderBg(float a);};