DrawTextCodepoint method

void DrawTextCodepoint(
  1. FontC font,
  2. int codepoint,
  3. Vector2C position,
  4. double fontSize,
  5. ColorC tint,
)

Implementation

void DrawTextCodepoint(
  FontC font,
  int codepoint,
  Vector2C position,
  double fontSize,
  ColorC tint,
) {
  return _DrawTextCodepoint(font, codepoint, position, fontSize, tint);
}