menti words init

This commit is contained in:
2023-07-26 16:10:47 +02:00
parent 5713422f49
commit 1893d513f2
10 changed files with 279 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ from sodoku import Sodoku
from fruit import Fruit
from pickaxe import Pickaxe_Field
from litris import Litris
from menti_words import MentiWords
def run():
@@ -69,6 +70,9 @@ def run():
ltris = Litris(overlay)
ltris.execute_main_loop()
ltris.stone_id_thread.run_mode = 'stop'
elif overlay.rb_int.get() == 11:
menti = MentiWords(overlay)
menti.execute_main_loop()
if __name__ == "__main__":
run()