summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/InnerNet/GameKeywords.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assembly-CSharp/InnerNet/GameKeywords.cs')
-rw-r--r--Client/Assembly-CSharp/InnerNet/GameKeywords.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/InnerNet/GameKeywords.cs b/Client/Assembly-CSharp/InnerNet/GameKeywords.cs
new file mode 100644
index 0000000..76eaabc
--- /dev/null
+++ b/Client/Assembly-CSharp/InnerNet/GameKeywords.cs
@@ -0,0 +1,16 @@
+using System;
+
+namespace InnerNet
+{
+ [Flags]
+ public enum GameKeywords : uint
+ {
+ All = 0U,
+ AllLanguages = 31U,
+ English = 1U,
+ Spanish = 2U,
+ Korean = 4U,
+ Russian = 8U,
+ Portuguese = 16U
+ }
+}