diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-19 16:20:13 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-19 16:20:13 -0500 |
commit | 59edd60ebec61bf24dd27063f85bcd049fd0af13 (patch) | |
tree | 902bb77c940134d20e35dfcb556b8e755bc373ef /include/world.hpp | |
parent | 36ed75a7749b81fab69f66b9ef8bbf0d18489f73 (diff) |
killed common, more inventory, other random stuff
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/include/world.hpp b/include/world.hpp index 9b68314..fe7d819 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -2,23 +2,24 @@ * @file world.hpp * @brief The world system */ +#ifndef WORLD_HPP_ +#define WORLD_HPP_ -#ifndef WORLD_H -#define WORLD_H +#include <string> +#include <thread> +#include <vector> -// library includes +#include <SDL2/SDL_mixer.h> #include <entityx/entityx.h> -// local game includes -#include <common.hpp> -#include <coolarray.hpp> -#include <events.hpp> -#include <texture.hpp> -#include <components.hpp> #include <tinyxml2.h> - using namespace tinyxml2; +#include <components.hpp> +#include <events.hpp> +#include <texture.hpp> +#include <vector2.hpp> + /** * The background type enum. * Used to choose which set of background images should be used. @@ -178,4 +179,4 @@ public: void load(const std::string& file); }; -#endif // WORLD_H +#endif // WORLD_HPP_ |