From f5314d86e3a8f7e9ae6b03babb40fb574784362f Mon Sep 17 00:00:00 2001 From: Brosef Date: Sun, 22 Jun 2025 18:49:32 +0100 Subject: [PATCH] Updated to use v1.1.0 of BaseGame and v1.0.0 of GameUtils --- game.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/game.py b/game.py index 14278f9..5e67463 100644 --- a/game.py +++ b/game.py @@ -32,11 +32,12 @@ 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): """ Ran when the game closes. """ pass -