From 97e3b4a9d7e995848341e53b2c002930c85d5c47 Mon Sep 17 00:00:00 2001 From: Matthew Hall Date: Wed, 7 Sep 2022 00:05:23 +1200 Subject: Parser + boilerplate for Among Us --- src/among_us/among_us.cr | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/among_us/among_us.cr (limited to 'src/among_us/among_us.cr') 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 + -- cgit v1.2.1