flappy init

This commit is contained in:
2023-07-27 17:58:57 +02:00
parent 8ded30d75a
commit 862fbf8bc6
11 changed files with 145 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ from fruit import Fruit
from pickaxe import Pickaxe_Field
from litris import Litris
from menti_words import MentiWords
from flappy import Flappy
def run():
@@ -73,6 +74,10 @@ def run():
elif overlay.rb_int.get() == 11:
menti = MentiWords(overlay)
menti.execute_main_loop()
elif overlay.rb_int.get() == 12:
flappy = Flappy(overlay)
flappy.execute_main_loop()
flappy.flappy_pos_disc.run_mode = 'stop'
if __name__ == "__main__":
run()