summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Innersloth/GameKeywords.cs
blob: bbb463f7f789ffa3c5638d5a32bc0e2fdc93bca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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,
    }
}