DrawFadingText /Drawing

void DrawFadingText(vector2 pos, string text, string bitmapFontFile, uint color, uint lifeTimeMS)

Draws a temporary fading text string that will last lifeTimeMS millisecons.

const uint white = ARGB(255,255,255,255);

// this text will last 2 seconds in screen
DrawFadingText(pos, "the lazy grey fox", "Verdana20.fnt", white, 2000);