mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-04-04 14:33:36 +00:00
27 lines
477 B
C++
Executable File
27 lines
477 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_GUI_SCREENS__InBedScreen_H__
|
|
#define NET_MINECRAFT_CLIENT_GUI_SCREENS__InBedScreen_H__
|
|
|
|
#include "../Screen.h"
|
|
class Button;
|
|
|
|
class InBedScreen: public Screen
|
|
{
|
|
public:
|
|
InBedScreen();
|
|
|
|
virtual ~InBedScreen();
|
|
|
|
void init();
|
|
|
|
void setupPositions();
|
|
|
|
void render(int xm, int ym, float a);
|
|
|
|
void buttonClicked(Button* button);
|
|
|
|
private:
|
|
Button* bWakeUp;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_GUI_SCREENS__InBedScreen_H__*/
|