C++ Qt Game Tutorial 1 - Drawing the Player (rectangle)

We begin our journey of making games with C and Qt by gently introducing 3 fundamental Qt classes that you will use in every single one of your games. Specifically, we introduce QGraphicsScene, QGraphicsItem (QGraphicsRectItem to be specific) and QGraphicsView. Get the code for this tutorial at: If you need to learn C first, I recommend LearningLad’s tutorial series:
Back to Top