diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Api/Innersloth/GameKeywords.cs')
-rw-r--r-- | Impostor-dev/src/Impostor.Api/Innersloth/GameKeywords.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Api/Innersloth/GameKeywords.cs b/Impostor-dev/src/Impostor.Api/Innersloth/GameKeywords.cs new file mode 100644 index 0000000..bbb463f --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Innersloth/GameKeywords.cs @@ -0,0 +1,19 @@ +using System; + +namespace Impostor.Api.Innersloth +{ + [Flags] + public enum GameKeywords : uint + { + All = 0, + Other = 1, + Spanish = 2, + Korean = 4, + Russian = 8, + Portuguese = 16, + Arabic = 32, + Filipone = 64, + Polish = 128, + English = 256, + } +}
\ No newline at end of file |