summaryrefslogtreecommitdiff
path: root/ui/queryTool.h
blob: 86331182a906683c92f0400de45b688d03a24c4e (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(bool & open) override;

private:
	std::string clicked;
};