GuiStatusBar method

  1. @override
int GuiStatusBar(
  1. RectangleD bounds,
  2. String? text
)
override

Implementation

@override
int GuiStatusBar(
  RectangleD bounds,
  String? text,
) => run(
  () => RaylibDebugLabels.GuiStatusBar(bounds, text),
  () => rl.Gui.GuiStatusBar.run2(
    rl.Temp.Rectangle$.Ref1(bounds).toJS,
    text?.toJS,
  ).toInt(),
);