diff options
Diffstat (limited to 'include/inventory.hpp')
-rw-r--r-- | include/inventory.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/inventory.hpp b/include/inventory.hpp index ca402b3..9a42aa4 100644 --- a/include/inventory.hpp +++ b/include/inventory.hpp @@ -5,6 +5,7 @@ #include <string.h> #include <texture.hpp> +#include <events.hpp> #define DEBUG @@ -268,4 +269,14 @@ GLuint getItemTexture(std::string name); float getItemWidth(std::string name); float getItemHeight(std::string name); +#include <entityx/entityx.h> + +class InventorySystem : public entityx::System<InventorySystem>, public entityx::Receiver<InventorySystem> { +public: + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; + + void configure(entityx::EventManager &em); + void receive(const MouseScrollEvent &mse); +}; + #endif // INVENTORY_H |