diff options
author | Viljami Ilola <+@hix.fi> | 2024-04-27 16:26:22 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-04-27 16:26:22 +0300 |
commit | 9f8247dc4da89219b6eede08d58d96964391a077 (patch) | |
tree | a6f7dc46275a3988fc528072f5e70caba461fae0 /src/sliceitoff/game/mainmenu.py | |
parent | d64c6b122eacd7b33bbda3a62093b492c786b1f9 (diff) |
refactor menus and screen showing under menu subpkg
Diffstat (limited to 'src/sliceitoff/game/mainmenu.py')
-rw-r--r-- | src/sliceitoff/game/mainmenu.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/sliceitoff/game/mainmenu.py b/src/sliceitoff/game/mainmenu.py deleted file mode 100644 index fbd91c9..0000000 --- a/src/sliceitoff/game/mainmenu.py +++ /dev/null @@ -1,18 +0,0 @@ -""" game.mainmenu - Let's user choose """ -from enum import IntEnum - -from sliceitoff.screens import mainmenu_screen -from .menu import Menu - -class MainMenuItems(IntEnum): - """ Items in the menu. Should match mainmenu_screen """ - NEWGAME = 0 - HISCORES = 1 - INSTRUCT = 2 - SETTINGS = 3 - QUIT = 4 - -class MainMenu(Menu): - """ Main menu """ - def __init__(self): - super().__init__(mainmenu_screen, len(MainMenuItems)) |