summaryrefslogtreecommitdiff
path: root/ui/queryTool.h
blob: cef4b7560f47063c892b4489bff4ca9f54cc9c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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) override;

private:
	std::string clicked;
};