public static bool InputText(string Title, ref string Value) { return(LGuiInputText.OnProcess(Title, ref Value, 64, LGuiInputTextFlags.None)); }
public static bool InputText(string Title, ref string Value, uint MaxLength, LGuiVec2 Size, LGuiInputTextFlags Flags = LGuiInputTextFlags.None) { return(LGuiInputText.OnProcess(Title, ref Value, MaxLength, Size, Flags)); }