summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/SystemTypeHelpers.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assembly-CSharp/SystemTypeHelpers.cs')
-rw-r--r--Client/Assembly-CSharp/SystemTypeHelpers.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/SystemTypeHelpers.cs b/Client/Assembly-CSharp/SystemTypeHelpers.cs
new file mode 100644
index 0000000..d462322
--- /dev/null
+++ b/Client/Assembly-CSharp/SystemTypeHelpers.cs
@@ -0,0 +1,7 @@
+using System;
+using System.Linq;
+
+public static class SystemTypeHelpers
+{
+ public static readonly SystemTypes[] AllTypes = Enum.GetValues(typeof(SystemTypes)).Cast<SystemTypes>().ToArray<SystemTypes>();
+}