forked from Kolyah35/minecraft-pe-0.6.1
20 lines
399 B
C++
Executable File
20 lines
399 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();
|
|
|
|
void tick();
|
|
private:
|
|
int ticks;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_GUI_SCREENS__ProgressScreen_H__*/
|