blob: 3f53ea022bd051d85c33490dbc178564821d7ef2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#pragma once
#include "Screen.h"
class Options;
using namespace std;
class VideoSettingsScreen : public Screen
{
private:
Screen *lastScreen;
protected:
wstring title;
private:
Options *options;
public:
VideoSettingsScreen(Screen *lastScreen, Options *options);
virtual void init();
protected:
virtual void buttonClicked(Button *button);
public:
virtual void render(int xm, int ym, float a);
};
|