added first draft new pickaxe try

This commit is contained in:
2023-07-17 14:14:46 +02:00
parent 2d46fd65b9
commit 5cd1d63fc8
9 changed files with 491 additions and 11 deletions

View File

@@ -9,6 +9,7 @@ from craft import Craft
from mine import Mine
from sodoku import Sodoku
from fruit import Fruit
from pickaxe import Pickaxe_Field
def run():
@@ -61,7 +62,9 @@ def run():
elif overlay.rb_int.get() == 8:
sodo = Sodoku(overlay)
sodo.execute_main_loop()
elif overlay.rb_int.get() == 9:
paxe = Pickaxe_Field(overlay)
paxe.execute_main_loop()
if __name__ == "__main__":
run()