Exemplo n.º 1
0
 public InputTextGuiElement(string label, int bufferSize = 260) : base(label)
 {
     TextInput = new RyneImGuiTextInput(label, bufferSize);
 }
Exemplo n.º 2
0
 public StringInputGui(ImGuiWrapper gui, string windowTitle = "Input", int bufferSize = 260) : base(gui, windowTitle)
 {
     TextInput = new RyneImGuiTextInput(windowTitle, bufferSize);
 }