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