diff options
Diffstat (limited to 'src/splitscreen_duo/command.py')
| -rw-r--r-- | src/splitscreen_duo/command.py | 6 |
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 |