How can you draw lines and/or text so they appear on top of sprites
Guess you should draw your lines and your text after drawing the sprites ...

I mean, if you have this :

DrawLines;
DrawText;
DrawSprite;

This won't be good ... Just put them in the inverse order :

DrawSprite(draws the sprites first)
DrawLines(then draws the lines on the top of the sprites)
DrawText(and finally, draws the text on the top of the two others)

I don't know if it's what you were looking for ^^
but I hope it helped

Bye
Avatar