Files
mcpe/source/GUI/Screen/ChatScreen.hpp
iProgramInCpp 9642818a88 * Initial commit.
:)
2023-07-30 22:22:02 +03:00

13 lines
202 B
C++

#pragma once
#include "Screen.hpp"
class ChatScreen : public Screen
{
public:
void buttonClicked(Button*) override;
void init() override;
void render(int mouseX, int mouseY, float f) override;
};