first commit
This commit is contained in:
19
Minecraft.Client/Common/GameRules/LevelGenerators.h
Normal file
19
Minecraft.Client/Common/GameRules/LevelGenerators.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
using namespace std;
|
||||
|
||||
class LevelGenerationOptions;
|
||||
|
||||
class LevelGenerators
|
||||
{
|
||||
private:
|
||||
vector<LevelGenerationOptions *> m_levelGenerators;
|
||||
|
||||
public:
|
||||
LevelGenerators();
|
||||
|
||||
void addLevelGenerator(const wstring &displayName, LevelGenerationOptions *generator);
|
||||
void removeLevelGenerator(LevelGenerationOptions *generator);
|
||||
|
||||
vector<LevelGenerationOptions *> *getLevelGenerators() { return &m_levelGenerators; }
|
||||
};
|
||||
Reference in New Issue
Block a user