forked from Kolyah35/minecraft-pe-0.6.1
23 lines
347 B
C++
Executable File
23 lines
347 B
C++
Executable File
#pragma once
|
|
|
|
#include "client/gui/Screen.hpp"
|
|
#include "client/gui/components/TextBox.hpp"
|
|
|
|
class ChatScreen: public Screen
|
|
{
|
|
public:
|
|
ChatScreen();
|
|
|
|
void init();
|
|
|
|
void render(int xm, int ym, float a);
|
|
|
|
void buttonClicked(Button* button) {};
|
|
|
|
bool handleBackEvent(bool isDown);
|
|
void keyPressed(int eventKey);
|
|
private:
|
|
TextBox m_input;
|
|
};
|
|
|