Some other changes in game.py

This commit is contained in:
2023-12-22 16:01:50 +01:00
parent abfc1a2adf
commit d52d601408
4 changed files with 45 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
class statics:
_menutitle = "Hauptmenü"
_menupoints = ("Einstellungen",
"Highscore")
_version = "1.0"
def __init__(self) -> None:
for x in self._menupoints:
print(x)
pass