std::string compatible imgui text input

This commit is contained in:
brunoherbelin
2021-04-13 21:23:42 +02:00
parent 765133a3bd
commit 2814763b97

View File

@@ -63,6 +63,7 @@ namespace ImGuiToolkit
void SetAccentColor (accent_color color);
struct ImVec4 HighlightColor (bool active = true);
bool InputText(const char* label, std::string* str);
bool InputTextMultiline(const char* label, std::string* str, const ImVec2& size = ImVec2(0, 0), int linesize = 0);
}