mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 08:15:36 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
// using namespace std;
|
||||
|
||||
class LevelGenerationOptions;
|
||||
|
||||
class LevelGenerators {
|
||||
private:
|
||||
std::vector<LevelGenerationOptions*> m_levelGenerators;
|
||||
|
||||
public:
|
||||
LevelGenerators();
|
||||
|
||||
void addLevelGenerator(const std::wstring& displayName,
|
||||
LevelGenerationOptions* generator);
|
||||
void removeLevelGenerator(LevelGenerationOptions* generator);
|
||||
|
||||
std::vector<LevelGenerationOptions*>* getLevelGenerators() {
|
||||
return &m_levelGenerators;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user