1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
namespace Impostor.Api.Innersloth
{
public enum VentLocation : uint
{
// Skeld
SkeldAdmin = 0,
SkeldRightHallway = 1,
SkeldCafeteria = 2,
SkeldElectrical = 3,
SkeldUpperEngine = 4,
SkeldSecurity = 5,
SkeldMedbay = 6,
SkeldWeapons = 7,
SkeldLowerReactor = 8,
SkeldLowerEngine = 9,
SkeldShields = 10,
SkeldUpperReactor = 11,
SkeldUpperNavigation = 12,
SkeldLowerNavigation = 13,
// Mira HQ
MiraBalcony = 1,
MiraCafeteria = 2,
MiraReactor = 3,
MiraLaboratory = 4,
MiraOffice = 5,
MiraAdmin = 6,
MiraGreenhouse = 7,
MiraMedbay = 8,
MiraDecontamination = 9,
MiraLockerRoom = 10,
MiraLaunchpad = 11,
// Polus
PolusSecurity = 0,
PolusElectrical = 1,
PolusO2 = 2,
PolusCommunications = 3,
PolusOffice = 4,
PolusAdmin = 5,
PolusLaboratory = 6,
PolusLava = 7,
PolusStorage = 8,
PolusRightStabilizer = 9,
PolusLeftStabilizer = 10,
PolusOutsideAdmin = 11,
}
}
|