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

@ -1 +1 @@
Subproject commit 48217dd63efea44513a55d4e267601c608c5ca8e
Subproject commit 155ed6ec390f5e6109b3358683e8f5d1ed367db0

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: