GuiDummyRec method

int GuiDummyRec(
  1. RectangleD bounds,
  2. String? text
)

Implementation

int GuiDummyRec(
  RectangleD bounds,
  String? text,
) => run(
  () => 'GuiDummyRec($bounds, $text)',
  () => rl.Gui.GuiDummyRec(
    rl.Temp.Rectangle$.Ref1(bounds).ref,
    rl.Temp.String$.ValueOrNull(text),
  ),
);