From aa96587f5ea344496a4b92001bcbe79db1cb96a4 Mon Sep 17 00:00:00 2001 From: "Hannes F. Kuchelmeister" Date: Fri, 5 Nov 2021 21:05:10 +0100 Subject: [PATCH] set window title Co-authored-by: Laura Januleviciute --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index f0197b1..e9a1e87 100644 --- a/main.py +++ b/main.py @@ -32,6 +32,7 @@ game_objects.append(Vacuum(bubble_objects)) while True: SCREEN.fill(BACKGROUND) + pygame.display.set_caption("Rush Hour CO2") if len(bubble_objects) < BUBBLE_LIMIT: for game_object in bubble_objects: