Hi all,
I'm programming a virtual pong game, the must of it is done but I want to put the score situation of the two players in the middle of the playing field. I have no idea how to do it.
Qt Code:
  1. QString score;
  2. unsigned int points1, points2;
  3. score = points1 + " - " + points2;
To copy to clipboard, switch view to plain text mode 

I want to put in layout the Qstring score. I give you a picture of the game to give an idea of the project, it's all drawed.

VP.jpg

What can I do?