GuiMessageBox method
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),
),
);