Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
SuggestedInput.hpp
1
#pragma once
2
3
#include <vector>
4
#include <string>
5
#include <imgui.h>
6
7
namespace
Grindstone {
8
class
EngineCore;
9
10
namespace
Editor {
11
namespace
ImguiEditor {
12
class
SuggestedInput
{
13
public
:
14
size_t
Render(std::vector<std::string>& unusedComponentsItems);
15
private
:
16
size_t
RenderSuggestions(
17
std::vector<std::string>& unusedComponentsItems,
18
ImVec2 position,
19
float
suggestionsWidth
20
);
21
std::string inputString;
22
};
23
}
24
}
25
}
Grindstone::Editor::ImguiEditor::SuggestedInput
Definition
SuggestedInput.hpp:12
sources
code
Editor
ImguiEditor
SuggestedInput.hpp
Generated by
1.12.0