DrawRectangleLines method

  1. @override
void DrawRectangleLines(
  1. num posX,
  2. num posY,
  3. num width,
  4. num height,
  5. ColorD color,
)
override

Implementation

@override
void DrawRectangleLines(
  num posX,
  num posY,
  num width,
  num height,
  ColorD color,
) => run(
  () => RaylibDebugLabels.DrawRectangleLines(posX, posY, width, height, color),
  () => rl.Core.DrawRectangleLines(
    posX.toInt(),
    posY.toInt(),
    width.toInt(),
    height.toInt(),
    rl.Temp.Color$.Ref1(color).ref,
  ),
);