DrawLine function

void DrawLine(
  1. int startPosX,
  2. int startPosY,
  3. int endPosX,
  4. int endPosY,
  5. ColorD color,
)

See RaylibCoreFlatModule.DrawLine.

Implementation

void DrawLine(
  int startPosX,
  int startPosY,
  int endPosX,
  int endPosY,
  ColorD color,
) => _module.DrawLine(startPosX, startPosY, endPosX, endPosY, color);