Now use the latest libstormgames.

This commit is contained in:
Storm Dragon
2022-01-09 02:19:48 -05:00
parent 885ed82601
commit c928ec0a26
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from libstormgames.libstormgames import *
from libstormgames import *
# Initial variable settings
mode = "menu"
@ -14,6 +14,7 @@ def game(mode):
tries = 0
numberList = list("123456789")
random.shuffle(numberList)
speak(' '.join(numberList))
while ''.join(numberList) != "123456789":
event = pygame.event.wait()
if event.type == pygame.KEYDOWN: