DrawText function

void DrawText(
  1. MemoryPointer<RChar> text,
  2. int posX,
  3. int posY,
  4. int fontSize,
  5. ColorD color,
)

See RaylibCoreFlatModule.DrawText.

Implementation

void DrawText(
  MemoryPointer<RChar> text,
  int posX,
  int posY,
  int fontSize,
  ColorD color,
) => _module.DrawText(text, posX, posY, fontSize, color);