aboutsummaryrefslogtreecommitdiff
path: root/shared.py
diff options
context:
space:
mode:
Diffstat (limited to 'shared.py')
-rw-r--r--shared.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/shared.py b/shared.py
new file mode 100644
index 0000000..e356255
--- /dev/null
+++ b/shared.py
@@ -0,0 +1,7 @@
+from enum import Enum
+
+class Control(Enum):
+ ERROR = -1
+ SIGUIENTE = 0
+ REPETIR = 1
+ TERMINAR = 2