added sodoku to ui

This commit is contained in:
2023-04-30 21:04:40 +02:00
parent 7af6f0c7ed
commit b64dad8e5b
3 changed files with 23 additions and 8 deletions

View File

@@ -56,8 +56,11 @@ def run():
mine = Mine(overlay)
mine.execute_main_loop()
elif overlay.rb_int.get() == 7:
fruit = Sodoku(overlay)
fruit = Fruit(overlay)
fruit.execute_main_loop()
elif overlay.rb_int.get() == 8:
sodo = Sodoku(overlay)
sodo.execute_main_loop()
if __name__ == "__main__":