drawTextCodepoint function

void drawTextCodepoint(
  1. Font font,
  2. int codepoint,
  3. Vector2 position,
  4. double fontSize,
  5. Color tint,
)

Draw one character (codepoint).

Implementation

void drawTextCodepoint(
  Font font,
  int codepoint,
  Vector2 position,
  double fontSize,
  Color tint,
) {
  return library.DrawTextCodepoint(
    font.ref,
    codepoint,
    position.ref,
    fontSize,
    tint.ref,
  );
}