diff options
Diffstat (limited to 'src/sliceitoff/screens/mainmenu.py')
-rw-r--r-- | src/sliceitoff/screens/mainmenu.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/sliceitoff/screens/mainmenu.py b/src/sliceitoff/screens/mainmenu.py new file mode 100644 index 0000000..e4c2dc1 --- /dev/null +++ b/src/sliceitoff/screens/mainmenu.py @@ -0,0 +1,17 @@ +""" screens.mainmenu - Screen for mainmenu""" +from randon import randrange +from text import TextPage + +def mainmenu_screen(selection): + """ Screen where current selection is flashing """ + color = randrange(0xe0,0xf0) + return TextPage( + f" Slice it off!!\n" + f"\n" + f"{color if selection == 0 else '\xe8'}New Game" + f"{color if selection == 0 else '\xe8'}High Scores\n" + f"{color if selection == 0 else '\xe8'}Instructions\n" + f"{color if selection == 0 else '\xe8'}Quit, Why?", + font = '8x8', + size = (16_000, 16_000), + pos = (24_000, 32_000) ) |