7 lines
189 B
Python
7 lines
189 B
Python
|
import keyboard
|
||
|
|
||
|
class MenuManager: # TODO
|
||
|
def __init__(self,selections:list):
|
||
|
self.selected = 0 # current selection
|
||
|
self.selections = selections # available selections
|