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))