mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
16 lines
221 B
C++
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;
|
|
};
|
|
|