mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
28 lines
599 B
C++
28 lines
599 B
C++
|
|
#include "../Screen.h"
|
|
#include "../components/Button.h"
|
|
#include "../../Minecraft.h"
|
|
#include "client/gui/components/ImageButton.h"
|
|
#include "client/gui/components/TextBox.h"
|
|
|
|
class JoinByIPScreen: public Screen
|
|
{
|
|
public:
|
|
JoinByIPScreen();
|
|
virtual ~JoinByIPScreen();
|
|
|
|
void init();
|
|
void setupPositions();
|
|
|
|
virtual void tick();
|
|
void render(int xm, int ym, float a);
|
|
|
|
virtual void keyPressed(int eventKey);
|
|
void buttonClicked(Button* button);
|
|
virtual bool handleBackEvent(bool isDown);
|
|
private:
|
|
TextBox tIP;
|
|
Touch::THeader bHeader;
|
|
Touch::TButton bJoin;
|
|
ImageButton bBack;
|
|
}; |