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
7namespace Grindstone {
8 class EngineCore;
9
10 namespace Editor {
11 namespace ImguiEditor {
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}
Definition SuggestedInput.hpp:12