mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-23 00:13:31 +00:00
22 lines
415 B
C++
Executable File
22 lines
415 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_GUI_SCREENS__ChatScreen_H__
|
|
#define NET_MINECRAFT_CLIENT_GUI_SCREENS__ChatScreen_H__
|
|
|
|
#include "../Screen.h"
|
|
|
|
class ChatScreen: public Screen
|
|
{
|
|
public:
|
|
ChatScreen() {}
|
|
virtual ~ChatScreen() {}
|
|
|
|
void init();
|
|
|
|
void render(int xm, int ym, float a);
|
|
|
|
void buttonClicked(Button* button) {};
|
|
|
|
private:
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_GUI_SCREENS__ChatScreen_H__*/
|