DrawRectangle method

void DrawRectangle(
  1. int posX,
  2. int posY,
  3. int width,
  4. int height,
  5. ColorC color,
)

Implementation

void DrawRectangle(int posX, int posY, int width, int height, ColorC color) {
  return _DrawRectangle(posX, posY, width, height, color);
}