aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Event.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-19 09:17:46 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-19 09:17:46 +0100
commit226e01dcd77821d1fccdf42074606ce80528637e (patch)
tree7277669f47bc27d2017a808f3145e1ad24c5d365 /src/crepe/api/Event.h
parent01e77b907cb02ea8a161f620664feb3b16ccb697 (diff)
parent8eb67c614b70da6e6767ccf543d64000ea468f79 (diff)
Merge branch 'loek/replay' into loek/scriptsloek/scripts
Diffstat (limited to 'src/crepe/api/Event.h')
-rw-r--r--src/crepe/api/Event.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/crepe/api/Event.h b/src/crepe/api/Event.h
index 73bf461..8e38280 100644
--- a/src/crepe/api/Event.h
+++ b/src/crepe/api/Event.h
@@ -3,9 +3,10 @@
#include <string>
-#include "api/KeyCodes.h"
#include "types.h"
+#include "KeyCodes.h"
+
namespace crepe {
/**
@@ -95,15 +96,6 @@ public:
};
/**
- * \brief Event triggered when text is submitted, e.g., from a text input.
- */
-class TextSubmitEvent : public Event {
-public:
- //! The submitted text.
- std::string text = "";
-};
-
-/**
* \brief Event triggered to indicate the application is shutting down.
*/
class ShutDownEvent : public Event {};