GuiWindowBox method

  1. @override
int GuiWindowBox(
  1. RectangleD bounds,
  2. String? title
)
override

Implementation

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