diff options
Diffstat (limited to 'include/systems/dialog.hpp')
-rw-r--r-- | include/systems/dialog.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/systems/dialog.hpp b/include/systems/dialog.hpp new file mode 100644 index 0000000..407f043 --- /dev/null +++ b/include/systems/dialog.hpp @@ -0,0 +1,16 @@ +#ifndef SYSTEM_DIALOG_HPP_ +#define SYSTEM_DIALOG_HPP_ + +#include <entityx/entityx.h> + +#include <events.hpp> + +class DialogSystem : public entityx::System<DialogSystem>, public entityx::Receiver<DialogSystem> { +public: + void configure(entityx::EventManager&); + void receive(const MouseClickEvent&); + void update(entityx::EntityManager&, entityx::EventManager&, entityx::TimeDelta) override; +}; + + +#endif // SYSTEM_DIALOG_HPP_ |