aboutsummaryrefslogtreecommitdiffstats
path: root/include/systems/dialog.hpp
blob: 407f04327322805fe184f711bba1367f24194594 (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&);
	void receive(const MouseClickEvent&);
	void update(entityx::EntityManager&, entityx::EventManager&, entityx::TimeDelta) override;
};


#endif // SYSTEM_DIALOG_HPP_