blob: 8462214bf8c4a890f2c1e518618ade1a22f62237 (
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, const UIComponent::Position & pos) override;
private:
std::string clicked;
};
|