DrawLineBezier method

void DrawLineBezier(
  1. Vector2C startPos,
  2. Vector2C endPos,
  3. double thick,
  4. ColorC color,
)

Implementation

void DrawLineBezier(
  Vector2C startPos,
  Vector2C endPos,
  double thick,
  ColorC color,
) {
  return _DrawLineBezier(startPos, endPos, thick, color);
}