Create menu.py
This commit is contained in:
parent
3a35468cd7
commit
5ff4eb2b4a
1 changed files with 6 additions and 0 deletions
6
lib/menu.py
Normal file
6
lib/menu.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
import keyboard
|
||||||
|
|
||||||
|
class MenuManager: # TODO
|
||||||
|
def __init__(self,selections:list):
|
||||||
|
self.selected = 0 # current selection
|
||||||
|
self.selections = selections # available selections
|
Reference in a new issue