summaryrefslogtreecommitdiff
path: root/kurator/src/markers.h
diff options
context:
space:
mode:
Diffstat (limited to 'kurator/src/markers.h')
-rw-r--r--kurator/src/markers.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/kurator/src/markers.h b/kurator/src/markers.h
index f390ff6..600adc1 100644
--- a/kurator/src/markers.h
+++ b/kurator/src/markers.h
@@ -1,7 +1,9 @@
#pragma once
+#include <functional>
#include <string>
+#include <entt/entity/handle.hpp>
#include <raylib.h>
#include <kurator/engine/Point.h>
@@ -23,7 +25,7 @@ struct Marker
void attach_markers(sim::State& ctx);
-void update_markers(sim::State& ctx);
+void update_markers(sim::State& ctx, std::function<void(entt::handle)> select);
void draw_markers(const sim::State& ctx);