aboutsummaryrefslogtreecommitdiffstats
path: root/include/systems/dialog.hpp
blob: 9fd3b9006285c00139882480461a62d81640b9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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&);
	bool receive(const MouseClickEvent&);
	void update(entityx::EntityManager&, entityx::EventManager&, entityx::TimeDelta) override;
};


#endif // SYSTEM_DIALOG_HPP_