GuiLabelButton method

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

Implementation

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