diff options
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/world.hpp b/include/world.hpp index ac55b56..bfd0464 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -136,8 +136,12 @@ private: */ static std::string currentXMLFile; + static std::string toLoad; + static std::vector<vec2> stars; + static int getLineIndex(float x); + public: static std::thread thAmbient; @@ -178,6 +182,10 @@ public: void fight(entityx::Entity entity); static void die(void); + static void loader(void); + + static inline bool shouldLoad(void) + { return !toLoad.empty(); } }; #endif // WORLD_HPP_ |