Files
minecraft-pe-0.6.1/src/client/gui/screens/ChatScreen.hpp
2026-03-28 01:08:50 +03:00

20 lines
243 B
C++
Executable File

#pragma once
#include "client/gui/Screen.hpp"
class ChatScreen: public Screen
{
public:
ChatScreen() {}
virtual ~ChatScreen() {}
void init();
void render(int xm, int ym, float a);
void buttonClicked(Button* button) {};
private:
};