aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Event.h
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-11-22 15:20:27 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-11-22 15:20:27 +0100
commit503c1d15d35fc06ac36febc72a8aa8abe38707ce (patch)
treeaa37ac9fe0b8a19e050e3377fbf385a361973339 /src/crepe/api/Event.h
parent2c2855b77a8a1a6e21a26fea5c5735dfbbc6066d (diff)
parent4117d1d287f1d87efd0577d56819520e981a7f1c (diff)
merge with master
Diffstat (limited to 'src/crepe/api/Event.h')
-rw-r--r--src/crepe/api/Event.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/crepe/api/Event.h b/src/crepe/api/Event.h
index 8a6b931..259acba 100644
--- a/src/crepe/api/Event.h
+++ b/src/crepe/api/Event.h
@@ -1,5 +1,5 @@
-// TODO discussing the location of these events
#pragma once
+// TODO discussing the location of these events
#include <string>
@@ -7,6 +7,8 @@
#include "KeyCodes.h"
+namespace crepe {
+
/**
* \brief Base class for all event types in the system.
*/
@@ -113,3 +115,5 @@ public:
* \brief Event triggered to indicate the application is shutting down.
*/
class ShutDownEvent : public Event {};
+
+} // namespace crepe