mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 03:34:18 +03:00
12 lines
161 B
C++
12 lines
161 B
C++
#pragma once
|
|
|
|
#include "Screen.hpp"
|
|
|
|
class ProgressScreen : public Screen
|
|
{
|
|
public:
|
|
void render(int, int, float) override;
|
|
bool isInGameScreen() override;
|
|
};
|
|
|