From 5ff4eb2b4a9301a61f83302195c46b079cd65d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maty=C3=A1=C5=A1=20Caras?= Date: Wed, 23 Mar 2022 14:20:59 +0100 Subject: [PATCH] Create menu.py --- lib/menu.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/menu.py diff --git a/lib/menu.py b/lib/menu.py new file mode 100644 index 0000000..ea41d82 --- /dev/null +++ b/lib/menu.py @@ -0,0 +1,6 @@ +import keyboard + +class MenuManager: # TODO + def __init__(self,selections:list): + self.selected = 0 # current selection + self.selections = selections # available selections