DrawText method

void DrawText(
  1. Pointer<Char> text,
  2. int posX,
  3. int posY,
  4. int fontSize,
  5. ColorC color,
)

Draw text (using default font)

Implementation

void DrawText(Pointer<Char> text, int posX, int posY, int fontSize, ColorC color)
  => _DrawText(text, posX, posY, fontSize, color);