characterColor function
Implementation
bool characterColor(
Pointer<SdlRenderer> renderer,
double x,
double y,
int c,
int color,
) {
final co = Uint32List.fromList([color]).buffer.asUint8List();
return characterRgba(renderer, x, y, c, co[0], co[1], co[2], co[3]);
}