the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 23 lines 484 B view raw
1#pragma once 2#include "Screen.h" 3class Options; 4using namespace std; 5 6class OptionsScreen : public Screen 7{ 8private: 9 static const int CONTROLS_BUTTON_ID = 100; 10 static const int VIDEO_BUTTON_ID = 101; 11 Screen *lastScreen; 12protected: 13 wstring title; 14private: 15 Options *options; 16public: 17 OptionsScreen(Screen *lastScreen, Options *options); 18 virtual void init(); 19protected: 20 virtual void buttonClicked(Button *button); 21public: 22 virtual void render(int xm, int ym, float a); 23};