fix: unglob all of /Build/Common

This commit is contained in:
Tropical
2026-03-08 22:43:59 +01:00
committed by JuiceyDev
parent 663ba5e7e9
commit a4ce19d004
416 changed files with 1749 additions and 1749 deletions
+4 -4
View File
@@ -1,19 +1,19 @@
#pragma once
using namespace std;
//using namespace std;
class LevelGenerationOptions;
class LevelGenerators
{
private:
vector<LevelGenerationOptions *> m_levelGenerators;
std::vector<LevelGenerationOptions *> m_levelGenerators;
public:
LevelGenerators();
void addLevelGenerator(const wstring &displayName, LevelGenerationOptions *generator);
void addLevelGenerator(const std::wstring &displayName, LevelGenerationOptions *generator);
void removeLevelGenerator(LevelGenerationOptions *generator);
vector<LevelGenerationOptions *> *getLevelGenerators() { return &m_levelGenerators; }
std::vector<LevelGenerationOptions *> *getLevelGenerators() { return &m_levelGenerators; }
};