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

16 lines
221 B
C++

#pragma once
#include "ConfirmScreen.hpp"
class DeleteWorldScreen : public ConfirmScreen
{
public:
DeleteWorldScreen(const LevelSummary& level);
void postResult(bool b) override;
private:
LevelSummary m_level;
};