From c96b3b803db9707b46bf7f77157592d5d815111d Mon Sep 17 00:00:00 2001 From: Brosef Date: Sat, 21 Jun 2025 23:27:16 +0100 Subject: [PATCH] Updated to utilise v1.0.0 of GameUtils --- game.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/game.py b/game.py index 1c23c5e..c2da234 100644 --- a/game.py +++ b/game.py @@ -31,7 +31,9 @@ class Game(gameUtils.Game): Ran once per frame, put your drawing code and any game logic that should be ran once per frame in here. """ - pass + + # Don't remove this. It does important things. :3 + super().update() def close(self): """