GuiButton method

  1. @override
int GuiButton(
  1. RectangleD bounds,
  2. String? text
)
override

Implementation

@override
int GuiButton(
  RectangleD bounds,
  String? text,
) => run(
  () => RaylibDebugLabels.GuiButton(bounds, text),
  () => rl.Gui.GuiButton(
    rl.Temp.Rectangle$.Ref1(bounds).ref,
    rl.Temp.String$.ValueOrNull(text),
  ),
);