drawLineEx function

void drawLineEx(
  1. Vector2 startPos,
  2. Vector2 endPos,
  3. double thick,
  4. Color color,
)

Draw a line defining thickness.

Implementation

void drawLineEx(Vector2 startPos, Vector2 endPos, double thick, Color color) {
  return library.DrawLineEx(startPos.ref, endPos.ref, thick, color.ref);
}