diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-12 12:45:19 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-12 12:45:19 +0100 |
commit | 48fb3f48831b1db187942592343eb4a2dc6662fc (patch) | |
tree | 8b97854105a6d0081cfb3e5df1d8a47f793bceac /src/crepe/api/Event.h | |
parent | 9ee280d8149f84f4240902c3363a6881bf425137 (diff) |
dispatch and queue working
Diffstat (limited to 'src/crepe/api/Event.h')
-rw-r--r-- | src/crepe/api/Event.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crepe/api/Event.h b/src/crepe/api/Event.h index 8d9b241..c0de4fc 100644 --- a/src/crepe/api/Event.h +++ b/src/crepe/api/Event.h @@ -19,6 +19,7 @@ enum class MouseButton { }; class Event { public: +bool handled = false; }; class KeyPressEvent : public Event { |