DrawLine method

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

Draw a line

Implementation

void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, ColorC color)
  => _DrawLine(startPosX, startPosY, endPosX, endPosY, color);