diff options
Diffstat (limited to 'src/crepe/api/Event.h')
-rw-r--r-- | src/crepe/api/Event.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/crepe/api/Event.h b/src/crepe/api/Event.h index 9923a05..c1432e1 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 {}; + +} |