DrawText method

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

Implementation

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