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.
433 B · 20 lines
C
at main
1234567891011121314151617181920#pragma once#include "AbstractContainerScreen.h"class Player;class Button;
class InventoryScreen : public AbstractContainerScreen{public: InventoryScreen(shared_ptr<Player> player); virtual void init();protected: virtual void renderLabels();private: float xMouse, yMouse;public: virtual void render(int xm, int ym, float a);protected: virtual void renderBg(float a); virtual void buttonClicked(Button *button);};