aboutsummaryrefslogtreecommitdiff
path: root/src/splitscreen_duo/command.py
diff options
context:
space:
mode:
authorZoltan Szabatin <[email protected]>2025-03-02 17:55:18 -0800
committerZoltan Szabatin <[email protected]>2025-03-02 17:55:18 -0800
commit4802f7f9d965c1014c710aeb024d090845a5b7bf (patch)
treec572d87616d6c82af35d829fc9fb2745552d29b8 /src/splitscreen_duo/command.py
parentrefactor: Move serial controller up hierarchy (diff)
downloadsplitscreen-duo-4802f7f9d965c1014c710aeb024d090845a5b7bf.tar.xz
splitscreen-duo-4802f7f9d965c1014c710aeb024d090845a5b7bf.zip
feat: Add proper command options
Diffstat (limited to 'src/splitscreen_duo/command.py')
-rw-r--r--src/splitscreen_duo/command.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/splitscreen_duo/command.py b/src/splitscreen_duo/command.py
new file mode 100644
index 0000000..df42a5a
--- /dev/null
+++ b/src/splitscreen_duo/command.py
@@ -0,0 +1,6 @@
+from enum import Enum
+
+
+class Command(Enum):
+ QUIT = 0
+ SELECT_GAME = 1