first commit
This commit is contained in:
18
Minecraft.Client/PauseScreen.h
Normal file
18
Minecraft.Client/PauseScreen.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
#include "Screen.h"
|
||||
|
||||
class PauseScreen : public Screen
|
||||
{
|
||||
private:
|
||||
int saveStep;
|
||||
int visibleTime;
|
||||
public:
|
||||
PauseScreen(); // 4J added
|
||||
virtual void init();
|
||||
protected:using Screen::buttonClicked;
|
||||
|
||||
virtual void buttonClicked(Button button);
|
||||
public:
|
||||
virtual void tick();
|
||||
virtual void render(int xm, int ym, float a);
|
||||
};
|
||||
Reference in New Issue
Block a user