GuiGroupBox method

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

Implementation

int GuiGroupBox(
  RectangleD bounds,
  String? text,
) => run(
  () => 'GuiGroupBox($bounds, $text)',
  () => rl.Gui.GuiGroupBox(
    _refRectangle1(bounds).ref,
    refStr(text),
  ),
);