aboutsummaryrefslogtreecommitdiffstats
path: root/include/components.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-27 18:49:32 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-27 18:49:32 -0500
commitb1d3354d93187a6bededc280ddb6dee5b159bbe7 (patch)
tree64fb7e7ecdb77e0bc8579720444f23485d439168 /include/components.hpp
parent95f6378e62cc6a7f25305d6f2317ad25d459f9c0 (diff)
menu, indoor fixes
Diffstat (limited to 'include/components.hpp')
-rw-r--r--include/components.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/components.hpp b/include/components.hpp
index 58f5aea..367b8a3 100644
--- a/include/components.hpp
+++ b/include/components.hpp
@@ -14,6 +14,8 @@
#include <texture.hpp>
#include <events.hpp>
+#include <atomic>
+
/**
* @struct Position
* @brief Stores the position of an entity on the xy plane.
@@ -275,7 +277,11 @@ public:
};
class RenderSystem : public entityx::System<RenderSystem> {
+private:
+ std::string loadTexString;
+ std::atomic<GLuint> loadTexResult;
public:
+ GLuint loadTexture(const std::string& file);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
};