summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/EAccountType.cs
blob: 36099221dac4d071d7544bb8395bf57349c9f172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Steamworks;

public enum EAccountType
{
	k_EAccountTypeInvalid,
	k_EAccountTypeIndividual,
	k_EAccountTypeMultiseat,
	k_EAccountTypeGameServer,
	k_EAccountTypeAnonGameServer,
	k_EAccountTypePending,
	k_EAccountTypeContentServer,
	k_EAccountTypeClan,
	k_EAccountTypeChat,
	k_EAccountTypeConsoleUser,
	k_EAccountTypeAnonUser,
	k_EAccountTypeMax
}