DrawTextCodepoint method

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

Draw one character (codepoint)

Implementation

void DrawTextCodepoint(FontC font, int codepoint, Vector2C position, double fontSize, ColorC tint)
  => _DrawTextCodepoint(font, codepoint, position, fontSize, tint);