DrawTextPro method

void DrawTextPro(
  1. FontC font,
  2. Pointer<Char> text,
  3. Vector2C position,
  4. Vector2C origin,
  5. double rotation,
  6. double fontSize,
  7. double spacing,
  8. ColorC tint,
)

Implementation

void DrawTextPro(
  FontC font,
  Pointer<Char> text,
  Vector2C position,
  Vector2C origin,
  double rotation,
  double fontSize,
  double spacing,
  ColorC tint,
) {
  return _DrawTextPro(
    font,
    text,
    position,
    origin,
    rotation,
    fontSize,
    spacing,
    tint,
  );
}