forked from Kolyah35/minecraft-pe-0.6.1
20 lines
302 B
C++
Executable File
20 lines
302 B
C++
Executable File
#pragma once
|
|
|
|
#include "client/gui/Screen.hpp"
|
|
#include "world/level/storage/LevelStorageSource.hpp"
|
|
|
|
class ChooseLevelScreen: public Screen
|
|
{
|
|
public:
|
|
void init();
|
|
|
|
protected:
|
|
std::string getUniqueLevelName(const std::string& level);
|
|
|
|
private:
|
|
void loadLevelSource();
|
|
|
|
LevelSummaryList levels;
|
|
};
|
|
|