aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/TitleScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Client/TitleScreen.h')
-rw-r--r--Minecraft.Client/TitleScreen.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/Minecraft.Client/TitleScreen.h b/Minecraft.Client/TitleScreen.h
new file mode 100644
index 00000000..70d37452
--- /dev/null
+++ b/Minecraft.Client/TitleScreen.h
@@ -0,0 +1,28 @@
+#pragma once
+#include "Screen.h"
+class Random;
+class Button;
+using namespace std;
+
+class TitleScreen : public Screen
+{
+private:
+ static Random *random;
+
+ float vo;
+
+ wstring splash;
+ Button *multiplayerButton;
+
+public:
+ TitleScreen();
+ virtual void tick();
+protected:
+ virtual void keyPressed(wchar_t eventCharacter, int eventKey);
+public:
+ 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