From 172ffc2abf7e5310cffcc2b3889b620a1fc8a130 Mon Sep 17 00:00:00 2001 From: Brosef Date: Tue, 1 Jul 2025 18:56:22 +0100 Subject: [PATCH] Added like two variables, literally just want to push this so I can I work on my PC --- game.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/game.py b/game.py index 25c939e..c4df27a 100644 --- a/game.py +++ b/game.py @@ -92,6 +92,10 @@ class Game(gameUtils.Game): self.currentCaptcha = None # The image of the captcha self.currentCaptchaImg = pygame.Surface((0, 0)) + # Holds when the timer started + self.timerStart = 0 + # Holds how much time the user has in total (not updated) + self.timerLength = 0 self.fonts = [] self.Drawsurface = Image.new("RGB",(800,220),(255,255,255))