DrawLine method

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

Implementation

void DrawLine(
  int startPosX,
  int startPosY,
  int endPosX,
  int endPosY,
  ColorC color,
) {
  return _DrawLine(startPosX, startPosY, endPosX, endPosY, color);
}