#ifndef INVENTORY_HPP_ #define INVENTORY_HPP_ #include #include #include struct Item { GLuint icon; }; using InventoryEntry = std::pair; class InventorySystem : public entityx::System, public entityx::Receiver { private: entityx::Entity currentItemEntity; std::vector items; unsigned int maxItemCount; public: InventorySystem(unsigned int mic = 1) : maxItemCount(mic) {} void configure(entityx::EventManager &ev); void loadIcons(void); void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; void receive(const KeyDownEvent &kde); }; #endif // INVENTORY_HPP_