GuiLabel method

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

Implementation

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