Files
minecraft-pe-0.6.1/src/client/gui/screens/ChatScreen.hpp
2026-04-04 14:33:56 +03:00

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;
};