the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 19 lines 424 B view raw
1#pragma once 2 3using namespace std; 4 5class LevelGenerationOptions; 6 7class LevelGenerators 8{ 9private: 10 vector<LevelGenerationOptions *> m_levelGenerators; 11 12public: 13 LevelGenerators(); 14 15 void addLevelGenerator(const wstring &displayName, LevelGenerationOptions *generator); 16 void removeLevelGenerator(LevelGenerationOptions *generator); 17 18 vector<LevelGenerationOptions *> *getLevelGenerators() { return &m_levelGenerators; } 19};