summaryrefslogtreecommitdiff
path: root/ui/queryTool.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/queryTool.h')
-rw-r--r--ui/queryTool.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/ui/queryTool.h b/ui/queryTool.h
new file mode 100644
index 0000000..8462214
--- /dev/null
+++ b/ui/queryTool.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "gameMainSelector.h"
+
+class QueryTool : public GameMainSelector::Component {
+protected:
+ using GameMainSelector::Component::render;
+
+ bool click(const SDL_MouseButtonEvent &, const Ray<GlobalPosition3D> &) override;
+ void render(const UIShader & shader, const UIComponent::Position & pos) override;
+
+private:
+ std::string clicked;
+};