GuiGroupBox method

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

Implementation

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