From b5cee4824251981b57c968b7418f7adf4d2997db Mon Sep 17 00:00:00 2001 From: John Tran Date: Sun, 4 Apr 2021 20:31:28 +1000 Subject: [PATCH] Airship Vent Enums (#373) Co-authored-by: miniduikboot <5243971+miniduikboot@users.noreply.github.com> Co-authored-by: John Tran --- src/Impostor.Api/Innersloth/VentLocation.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/Impostor.Api/Innersloth/VentLocation.cs b/src/Impostor.Api/Innersloth/VentLocation.cs index f9b8567ac..0092c6960 100644 --- a/src/Impostor.Api/Innersloth/VentLocation.cs +++ b/src/Impostor.Api/Innersloth/VentLocation.cs @@ -44,5 +44,19 @@ public enum VentLocation : uint PolusRightStabilizer = 9, PolusLeftStabilizer = 10, PolusOutsideAdmin = 11, + + // Airship + AirshipVault = 0, + AirshipCockpit = 1, + AirshipViewingDeck = 2, + AirshipEngineRoom = 3, + AirshipKitchen = 4, + AirshipMainHallBottom = 5, + AirshipGapRight = 6, + AirshipGapLeft = 7, + AirshipMainHallTop = 8, + AirshipShowers = 9, + AirshipRecords = 10, + AirshipCargoBay = 11, } }