GuiProgressBar method

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

Implementation

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