drawLineV function

void drawLineV(
  1. Vector2 startPos,
  2. Vector2 endPos,
  3. Color color
)

Draw a line (Vector version).

Implementation

void drawLineV(Vector2 startPos, Vector2 endPos, Color color) {
  return library.DrawLineV(startPos.ref, endPos.ref, color.ref);
}