drawRectangleV function

void drawRectangleV(
  1. Vector2 position,
  2. Vector2 size,
  3. Color color
)

Draw a color-filled rectangle (Vector version).

Implementation

void drawRectangleV(Vector2 position, Vector2 size, Color color) {
  return library.DrawRectangleV(position.ref, size.ref, color.ref);
}