aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/EventSystem.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-12 22:45:12 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-12 22:45:12 +0100
commit23196be83778973d9688cc5d465e4e4a16476568 (patch)
tree91dee3b2c2e05d3b529cf537d12a7faf7ec21dc1 /src/crepe/system/EventSystem.h
parent297d621987c224db26eadfb9bde9235741387496 (diff)
add documentation
Diffstat (limited to 'src/crepe/system/EventSystem.h')
-rw-r--r--src/crepe/system/EventSystem.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/crepe/system/EventSystem.h b/src/crepe/system/EventSystem.h
index a179d00..ff3ca4e 100644
--- a/src/crepe/system/EventSystem.h
+++ b/src/crepe/system/EventSystem.h
@@ -4,10 +4,17 @@
namespace crepe {
+/**
+ * \brief EventManager dispatch helper system
+ */
class EventSystem : public System {
public:
using System::System;
+ /**
+ * \brief Dispatch queued events
+ * \see EventManager::dispatch_events
+ */
void fixed_update() override;
};