GuiMessageBox function

int GuiMessageBox(
  1. RectangleD bounds,
  2. MemoryPointer<RChar> title,
  3. MemoryPointer<RChar> message,
  4. MemoryPointer<RChar> btnText,
  5. MemoryPointer<RInt> btnActive,
)

See RaylibGuiFlatModule.GuiMessageBox.

Implementation

int GuiMessageBox(
  RectangleD bounds,
  MemoryPointer<RChar> title,
  MemoryPointer<RChar> message,
  MemoryPointer<RChar> btnText,
  MemoryPointer<RInt> btnActive,
) => _module.GuiMessageBox(bounds, title, message, btnText, btnActive);