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/components.hpp | |
parent | 36ed75a7749b81fab69f66b9ef8bbf0d18489f73 (diff) |
killed common, more inventory, other random stuff
Diffstat (limited to 'include/components.hpp')
-rw-r--r-- | include/components.hpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/components.hpp b/include/components.hpp index e0147b0..449f7c3 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -5,15 +5,18 @@ * this allows the entity to change stats or skills on the go. This also allows every "object" * the be an entity, and it gives the game a much better customizability over xml. */ - #ifndef COMPONENTS_HPP #define COMPONENTS_HPP -#include <entityx/entityx.h> -#include <common.hpp> -#include <texture.hpp> +#include <string> +#include <vector> + #include <events.hpp> -#include <atomic> +#include <random.hpp> +#include <texture.hpp> +#include <vector2.hpp> + +#include <entityx/entityx.h> #include <tinyxml2.h> using namespace tinyxml2; @@ -158,7 +161,7 @@ struct SpriteData { vec2 offset_tex; vec2 size_tex; - uint limb; + unsigned int limb; }; using Frame = std::vector<std::pair<SpriteData, vec2>>; |