summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/InnerNet/GameKeywords.cs
blob: 76eaabca153376aa88352a74cbcc238f02b04736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace InnerNet
{
	[Flags]
	public enum GameKeywords : uint
	{
		All = 0U,
		AllLanguages = 31U,
		English = 1U,
		Spanish = 2U,
		Korean = 4U,
		Russian = 8U,
		Portuguese = 16U
	}
}