JustEnoughMod
Loading...
Searching...
No Matches
Event.hpp
1#ifndef EVENT_EVENT_HPP
2#define EVENT_EVENT_HPP
3
4#include <event/Key.hpp>
5
6namespace JEM::Event {
7 struct ExitEvent {};
8
10 double x;
11 double y;
12 };
13
15 Mouse button;
16 };
17
19 Mouse button;
20 };
21
23 double x;
24 double y;
25 };
26
28 Key key;
29 };
30
32 Key key;
33 };
34
36 unsigned int unicode;
37 };
38} // namespace JEM::Event
39
40#endif
Definition Event.hpp:7
Definition Event.hpp:27
Definition Event.hpp:31
Definition Event.hpp:9
Definition Event.hpp:22
Definition Event.hpp:35