GuiLine method

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

Implementation

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