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

12 lines
161 B
C++

#pragma once
#include "Screen.hpp"
class ProgressScreen : public Screen
{
public:
void render(int, int, float) override;
bool isInGameScreen() override;
};