DrawRectangle function

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

Implementation

void DrawRectangle(int posX, int posY, int width, int height, Color color) =>
    raylib.DrawRectangle(posX, posY, width, height, color.ptr.ref);