This repository was archived by the owner on Jul 8, 2025. It is now read-only.
forked from ExMod-Team/EXILED
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCameraType.cs
More file actions
156 lines (152 loc) · 3.91 KB
/
Copy pathCameraType.cs
File metadata and controls
156 lines (152 loc) · 3.91 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// -----------------------------------------------------------------------
// <copyright file="CameraType.cs" company="ExMod Team">
// Copyright (c) ExMod Team. All rights reserved.
// Licensed under the CC BY-SA 3.0 license.
// </copyright>
// -----------------------------------------------------------------------
#pragma warning disable SA1124 // Do not use regions
#pragma warning disable CS1591 // XML Comment Missing
#pragma warning disable SA1602 // Enumeration items should be documented
namespace Exiled.API.Enums
{
using Features;
/// <summary>
/// Unique identifier for the different types of SCP-079 cameras.
/// </summary>
/// <seealso cref="Camera.Type"/>
/// <seealso cref="Camera.Get(CameraType)"/>
/// <seealso cref="Camera.TryGet(CameraType, out Camera)"/>
public enum CameraType
{
/// <summary>
/// Represents an unknown camera.
/// </summary>
Unknown,
#region Ez
EzChkptHall,
EzCrossing,
EzCurve,
EzHallway,
EzThreeWay,
EzGateA,
EzGateB,
EzIntercomBottom,
EzIntercomHall,
EzIntercomPanel,
EzIntercomStairs,
EzLargeOffice,
EzLoadingDock,
EzMinorOffice,
EzTwoStoryOffice,
#endregion
#region Hcz
Hcz049ContChamber,
Hcz049ElevTop,
Hcz049Hallway,
Hcz049TopFloor,
Hcz049Outside,
Hcz079Airlock,
Hcz079ContChamber,
Hcz079Hallway,
Hcz079KillSwitch,
Hcz096ContChamber,
Hcz106Bridge,
Hcz106Catwalk,
Hcz106Recontainment,
HczChkptEz,
HczChkptHcz,
[System.Obsolete("This Camera no longer exist.")]
HczHIDChamber,
[System.Obsolete("This Camera no longer exist.")]
HczHIDHallway,
Hcz939,
HczArmory,
HczArmoryInterior,
HczCrossing,
HczElevSysA,
HczElevSysB,
HczHallway,
HczThreeWay,
HczTeslaGate,
HczTestroomBridge,
HczTestroomMain,
HczTestroomOffice,
HczWarheadArmory,
HczWarheadControl,
HczWarheadHallway,
HczWarheadTop,
#endregion
#region Lcz
Lcz173Bottom,
Lcz173ContChamber,
Lcz173Hall,
Lcz173Stairs,
Lcz914Airlock,
Lcz914ContChamber,
LczAirlock,
LczArmory,
LczCellblockBack,
LczCellblockEntry,
LczChkptAEntry,
LczChkptAInner,
LczChkptBEntry,
LczChkptBInner,
LczGlassroom,
LczGlassroomEntry,
LczGreenhouse,
LczCrossing,
LczCurve,
LczElevSysA,
LczElevSysB,
LczHallway,
LczThreeWay,
LczPcOffice,
LczRestrooms,
LczTcHallway,
LczTestChamber,
#endregion
#region Surface
ExitPassage,
GateASurface,
GateBSurface,
MainStreet,
SurfaceAirlock,
SurfaceBridge,
TunnelEntrance,
#endregion
#region new
Hcz173Outside,
Hcz173Stairs,
Hcz173ContChamber,
[System.Obsolete("This Camera no longer exist.")]
Hcz173Hallway,
[System.Obsolete("This Camera no longer exist.")]
HczCurve,
HczJunkMain,
HczJunkHallway,
HczCornerDeep,
HczDSS08,
HczMicroHIDStairs,
HczPipesHallway,
HczWarheadStarboardElevator,
HczMicroHIDMain,
HczWarheadTopElevators,
HczWarheadConnector,
HczWarheadPortElevator,
HczMicroHIDLab,
HczPipesMain,
HczScp127Lab,
HczScp127Containment,
HczServersUpperStorage,
HczLowerServerStorage,
HczServerStaircase,
#endregion
#region custom
EzArmCameraToy,
EzCameraToy,
HczCameraToy,
LczCameraToy,
SzCameraToy,
#endregion
}
}