From 1f14089d0d6adbd1072b022dfaeb17a1975e8b38 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 19 Mar 2025 01:44:18 +0000 Subject: Replace basic query tool with a ImGui version --- ui/queryTool.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ui/queryTool.h (limited to 'ui/queryTool.h') 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 &) override; + void render(const UIShader & shader, const UIComponent::Position & pos) override; + +private: + std::string clicked; +}; -- cgit v1.2.3