diff options
Diffstat (limited to 'Assembly_Firstpass/Steamworks/ESteamNetworkingGetConfigValueResult.cs')
-rw-r--r-- | Assembly_Firstpass/Steamworks/ESteamNetworkingGetConfigValueResult.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/ESteamNetworkingGetConfigValueResult.cs b/Assembly_Firstpass/Steamworks/ESteamNetworkingGetConfigValueResult.cs new file mode 100644 index 0000000..678077f --- /dev/null +++ b/Assembly_Firstpass/Steamworks/ESteamNetworkingGetConfigValueResult.cs @@ -0,0 +1,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 +} |