Imagine you have a working game. You want to add a new feature, like a score. Should you change the main game directly? Or should you work on a separate copy? In this lesson, you will learn why it's better to work on a separate copy, called a 'branch', when adding new things to your code. This keeps your main game safe and working.
Here's what a blank Pygame window looks like:
<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg">
<rect width="800" height="600" fill="#CCCCCC"/>
<text x="50%" y="50%" font-family="Arial" font-size="30" fill="#333333" text-anchor="middle" alignment-baseline="middle">Pygame Window</text>
</svg>