mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-30 12:03:30 +00:00
20 lines
243 B
C++
Executable File
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:
|
|
};
|
|
|