diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-19 01:44:18 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-19 02:30:30 +0000 |
commit | 1f14089d0d6adbd1072b022dfaeb17a1975e8b38 (patch) | |
tree | 8d0065a94c8467ebe5860c3d9f05bafa1b2445e0 /ui/queryTool.h | |
parent | Replace basic rail builder UI with a ImGui version (diff) | |
download | ilt-1f14089d0d6adbd1072b022dfaeb17a1975e8b38.tar.bz2 ilt-1f14089d0d6adbd1072b022dfaeb17a1975e8b38.tar.xz ilt-1f14089d0d6adbd1072b022dfaeb17a1975e8b38.zip |
Replace basic query tool with a ImGui version
Diffstat (limited to 'ui/queryTool.h')
-rw-r--r-- | ui/queryTool.h | 14 |
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; +}; |