forked from Kolyah35/minecraft-pe-0.6.1
20 lines
233 B
C++
Executable File
20 lines
233 B
C++
Executable File
#pragma once
|
|
|
|
#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:
|
|
};
|
|
|