summaryrefslogtreecommitdiff
path: root/src/among_us/among_us.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/among_us/among_us.cr')
-rw-r--r--src/among_us/among_us.cr29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/among_us/among_us.cr b/src/among_us/among_us.cr
new file mode 100644
index 0000000..4b4f3b8
--- /dev/null
+++ b/src/among_us/among_us.cr
@@ -0,0 +1,29 @@
+module AmongUs
+
+ enum Command
+ SUS
+ VENTED
+ SUSSY
+ ELECTRICAL
+ WHO
+ WHERE
+ end
+
+ enum Color
+ RED
+ BLUE
+ PURPLE
+ GREEN
+ YELLOW
+ CYAN
+ BLACK
+ WHITE
+ BROWN
+ LIME
+ PINK
+ ORANGE
+ end
+
+ alias Instruction = Command | Color
+end
+