DrawRectangle function

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

See RaylibCoreFlatModule.DrawRectangle.

Implementation

void DrawRectangle(
  int posX,
  int posY,
  int width,
  int height,
  ColorD color,
) => _module.DrawRectangle(posX, posY, width, height, color);