コード例 #1
0
 public static bool InputText(string Title, ref string Value)
 {
     return(LGuiInputText.OnProcess(Title, ref Value, 64, LGuiInputTextFlags.None));
 }
コード例 #2
0
 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));
 }