DrawTextEx method

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

Implementation

void DrawTextEx(
  FontC font,
  Pointer<Char> text,
  Vector2C position,
  double fontSize,
  double spacing,
  ColorC tint,
) {
  return _DrawTextEx(font, text, position, fontSize, spacing, tint);
}