move everything to minecraft subdir, switch to absolute include path

This commit is contained in:
Tropical
2026-03-30 11:01:08 -05:00
parent d570e28c16
commit 5c17c5c9ff
7718 changed files with 36859 additions and 36863 deletions

View File

@@ -0,0 +1,19 @@
#include "Minecraft.World/Header Files/stdafx.h"
#include "LevelGenerationOptions.h"
#include "LevelGenerators.h"
LevelGenerators::LevelGenerators() {}
void LevelGenerators::addLevelGenerator(const std::wstring& displayName,
LevelGenerationOptions* generator) {
if (!displayName.empty()) generator->setDisplayName(displayName);
m_levelGenerators.push_back(generator);
}
void LevelGenerators::removeLevelGenerator(LevelGenerationOptions* generator) {
std::vector<LevelGenerationOptions*>::iterator it;
while ((it = find(m_levelGenerators.begin(), m_levelGenerators.end(),
generator)) != m_levelGenerators.end()) {
m_levelGenerators.erase(it);
}
}