stringColor function

bool stringColor(
  1. Pointer<SdlRenderer> renderer,
  2. double x,
  3. double y,
  4. String s,
  5. SdlxColor color,
)

Implementation

bool stringColor(
  Pointer<SdlRenderer> renderer,
  double x,
  double y,
  String s,
  SdlxColor color,
) => stringRgba(renderer, x, y, s, color.r, color.g, color.b, color.a);