mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
16 lines
260 B
C++
16 lines
260 B
C++
#pragma once
|
|
|
|
#include "Screen.hpp"
|
|
|
|
class RenameMPLevelScreen : public Screen
|
|
{
|
|
public:
|
|
RenameMPLevelScreen(const std::string& levelName);
|
|
void init() override;
|
|
void render(int mouseX, int mouseY, float f) override;
|
|
|
|
private:
|
|
std::string m_levelName;
|
|
};
|
|
|