GuiGrid method
Implementation
int GuiGrid(
RectangleD bounds,
// String text,
num spacing,
num subdivs,
[Vector2D? mouseCell]
) => run(
// () => 'GuiGrid($bounds, $text, $spacing, $subdivs, $mouseCell)',
() => 'GuiGrid($bounds, $spacing, $subdivs, $mouseCell)',
() => _refUpdateVector2(mouseCell,
(pv) => rl.Gui.GuiGrid(
_refRectangle1(bounds).ref,
// str(text),
nullptr,
spacing.toDouble(),
subdivs.toInt(),
pv,
),
),
);