mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 06:53:30 +00:00
27 lines
542 B
C++
Executable File
27 lines
542 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_GUI_SCREENS__BuyGameScreen_H__
|
|
#define NET_MINECRAFT_CLIENT_GUI_SCREENS__BuyGameScreen_H__
|
|
|
|
#include "../Screen.h"
|
|
#include "../components/Button.h"
|
|
|
|
class BuyGameScreen: public Screen
|
|
{
|
|
public:
|
|
BuyGameScreen() {}
|
|
virtual ~BuyGameScreen() {}
|
|
|
|
void init();
|
|
|
|
void render(int xm, int ym, float a);
|
|
|
|
void buttonClicked(Button* button) {
|
|
//if (button->id == bQuit.id)
|
|
}
|
|
|
|
private:
|
|
//Button bQuit;
|
|
//Button bBuyGame;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_GUI_SCREENS__BuyGameScreen_H__*/
|