diff options
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/world.hpp b/include/world.hpp index cb8c30d..b8a80a4 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -168,6 +168,8 @@ private: std::string currentXMLFile; public: + std::thread thAmbient; + explicit WorldSystem(void); ~WorldSystem(void); @@ -206,7 +208,7 @@ public: // worlddata2 stuff WorldData2 worldData; - void generate(unsigned int width = 0); + void generate(int width = 0); void addHole(const unsigned int& start, const unsigned int& end); void addHill(const ivec2& peak, const unsigned int& width); |