diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-28 09:18:53 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-28 09:18:53 -0400 |
commit | ed10ef9ede3d397672239c3b3dbe42cc6fbe56b4 (patch) | |
tree | 8899b84ca035513550f097c6af3fc236f6bd8be8 /include/events.hpp | |
parent | 816bedbd011b6729e8be0a4b40213f48fd9d73ca (diff) |
npc dialog
Diffstat (limited to 'include/events.hpp')
-rw-r--r-- | include/events.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/events.hpp b/include/events.hpp index 6a9bd8c..8a09638 100644 --- a/include/events.hpp +++ b/include/events.hpp @@ -8,6 +8,7 @@ #include <SDL2/SDL.h> #include <string> +#include <common.hpp> class World; @@ -18,6 +19,14 @@ struct MouseScrollEvent { int scrollDistance; }; +struct MouseClickEvent { + MouseClickEvent(vec2 pos, int b) + : position(pos), button(b) {} + + vec2 position; + int button; +}; + struct KeyDownEvent { KeyDownEvent(SDL_Keycode kc = 0) : keycode(kc) {} |