GuiValueBox function

int GuiValueBox(
  1. RectangleD bounds,
  2. MemoryPointer<RChar> text,
  3. MemoryPointer<RInt> value,
  4. int minValue,
  5. int maxValue,
  6. bool editMode,
)

See RaylibGuiFlatModule.GuiValueBox.

Implementation

int GuiValueBox(
  RectangleD bounds,
  MemoryPointer<RChar> text,
  MemoryPointer<RInt> value,
  int minValue,
  int maxValue,
  bool editMode,
) => _module.GuiValueBox(bounds, text, value, minValue, maxValue, editMode);