GuiPanel method

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

Implementation

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