16 lines
242 B
Python
16 lines
242 B
Python
class statics:
|
|
|
|
_menutitle = "Hauptmenü"
|
|
_menupoints = ("Einstellungen",
|
|
"Highscore")
|
|
_version = "1.0"
|
|
|
|
|
|
|
|
def __init__(self) -> None:
|
|
for x in self._menupoints:
|
|
print(x)
|
|
|
|
pass
|
|
|