mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-30 12:03:30 +00:00
22 lines
444 B
C++
Executable File
22 lines
444 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_GUI_SCREENS__ProgressScreen_H__
|
|
#define NET_MINECRAFT_CLIENT_GUI_SCREENS__ProgressScreen_H__
|
|
|
|
#include "../Screen.h"
|
|
|
|
class ProgressScreen: public Screen
|
|
{
|
|
public:
|
|
ProgressScreen();
|
|
|
|
void render(int xm, int ym, float a);
|
|
bool isInGameScreen();
|
|
|
|
virtual void keyPressed(int eventKey) {}
|
|
|
|
void tick();
|
|
private:
|
|
int ticks;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_GUI_SCREENS__ProgressScreen_H__*/
|