DrawLineDashed function

void DrawLineDashed(
  1. Vector2D startPos,
  2. Vector2D endPos,
  3. int dashSize,
  4. int spaceSize,
  5. ColorD color,
)

See RaylibCoreFlatModule.DrawLineDashed.

Implementation

void DrawLineDashed(
  Vector2D startPos,
  Vector2D endPos,
  int dashSize,
  int spaceSize,
  ColorD color,
) => _module.DrawLineDashed(startPos, endPos, dashSize, spaceSize, color);