aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/VideoSettingsScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Client/VideoSettingsScreen.h')
-rw-r--r--Minecraft.Client/VideoSettingsScreen.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Minecraft.Client/VideoSettingsScreen.h b/Minecraft.Client/VideoSettingsScreen.h
new file mode 100644
index 00000000..3f53ea02
--- /dev/null
+++ b/Minecraft.Client/VideoSettingsScreen.h
@@ -0,0 +1,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);
+}; \ No newline at end of file