GuiMessageBox method

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

Implementation

@override
int GuiMessageBox(
  RectangleD bounds,
  String? title,
  String message,
  String buttons,
) => run(
  () => RaylibDebugLabels.GuiMessageBox(bounds, title, message, buttons),
  () => rl.Gui.GuiMessageBox.run4(
    rl.Temp.Rectangle$.Ref1(bounds).toJS,
    title?.toJS,
    message.toJS,
    buttons.toJS,
  ).toInt(),
);