GuiMessageBox method

int GuiMessageBox(
  1. RectangleD bounds,
  2. String? title,
  3. String message,
  4. String buttons,
)

Implementation

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