summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/ESteamNetworkingGetConfigValueResult.cs
blob: 678077f05652c39c4a19b738eed3c8c6d9416366 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Steamworks;

public enum ESteamNetworkingGetConfigValueResult
{
	k_ESteamNetworkingGetConfigValue_BadValue = -1,
	k_ESteamNetworkingGetConfigValue_BadScopeObj = -2,
	k_ESteamNetworkingGetConfigValue_BufferTooSmall = -3,
	k_ESteamNetworkingGetConfigValue_OK = 1,
	k_ESteamNetworkingGetConfigValue_OKInherited = 2,
	k_ESteamNetworkingGetConfigValueResult__Force32Bit = int.MaxValue
}