GuiWindowBox method

int GuiWindowBox(
  1. RectangleD bounds,
  2. String? title
)

Implementation

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