aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/TitleScreen.h
blob: 70d374526efbbb78e5959b497510443294028341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
};