GuiSlider method

int GuiSlider(
  1. RectangleC bounds,
  2. Pointer<Char> textLeft,
  3. Pointer<Char> textRight,
  4. Pointer<Float> value,
  5. double minValue,
  6. double maxValue,
)

Implementation

int GuiSlider(
  RectangleC bounds,
  Pointer<Char> textLeft,
  Pointer<Char> textRight,
  Pointer<Float> value,
  double minValue,
  double maxValue,
) {
  return _GuiSlider(bounds, textLeft, textRight, value, minValue, maxValue);
}