summaryrefslogtreecommitdiff
path: root/ui/queryTool.h
blob: 74c5380f06180ae19c54aed5e202269f8ea775cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "gameMainSelector.h"

class QueryTool : public GameMainSelector::Component {
public:
	QueryTool();

protected:
	using GameMainSelector::Component::render;

	bool click(const SDL_MouseButtonEvent &, const Ray<GlobalPosition3D> &) override;
	void render(bool & open) override;

private:
	std::string clicked;
};