drawRectangleLines function

void drawRectangleLines(
  1. int posX,
  2. int posY,
  3. int width,
  4. int height,
  5. Color color,
)

Draw rectangle outline.

Implementation

void drawRectangleLines(
  int posX,
  int posY,
  int width,
  int height,
  Color color,
) {
  return library.DrawRectangleLines(
    posX,
    posY,
    width,
    height,
    color.ref,
  );
}