blob: aa3ca0779df7a55db8828e1ea027e9a39113caf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef EVENTS_HPP_
#define EVENTS_HPP_
/**
* A place for events to live, while gamedev slowly dies from rewriting.
*/
#include <SDL2/SDL.h>
struct MouseScrollEvent {
MouseScrollEvent(int sd)
: scrollDistance(sd) {}
int scrollDistance;
};
struct KeyDownEvent {
KeyDownEvent(SDL_Keycode kc)
: keycode(kc) {}
SDL_Keycode keycode;
};
struct KeyUpEvent {
KeyUpEvent(SDL_Keycode kc)
: keycode(kc) {}
SDL_Keycode keycode;
};
#endif // EVENTS_HPP_
|