summaryrefslogtreecommitdiff
path: root/kurator/src/inspect.h
diff options
context:
space:
mode:
Diffstat (limited to 'kurator/src/inspect.h')
-rw-r--r--kurator/src/inspect.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/kurator/src/inspect.h b/kurator/src/inspect.h
new file mode 100644
index 0000000..c48ee5e
--- /dev/null
+++ b/kurator/src/inspect.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <entt/entity/handle.hpp>
+
+
+namespace kurator
+{
+
+
+struct InspectionWindow
+{
+ bool open = false;
+ entt::handle selected = {};
+ void show();
+ void select(entt::handle entity);
+};
+
+
+} // namespace kurator