summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs')
-rw-r--r--Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs b/Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs
new file mode 100644
index 0000000..974f9a5
--- /dev/null
+++ b/Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs
@@ -0,0 +1,15 @@
+namespace Steamworks;
+
+public enum ESteamNetworkingConnectionState
+{
+ k_ESteamNetworkingConnectionState_None = 0,
+ k_ESteamNetworkingConnectionState_Connecting = 1,
+ k_ESteamNetworkingConnectionState_FindingRoute = 2,
+ k_ESteamNetworkingConnectionState_Connected = 3,
+ k_ESteamNetworkingConnectionState_ClosedByPeer = 4,
+ k_ESteamNetworkingConnectionState_ProblemDetectedLocally = 5,
+ k_ESteamNetworkingConnectionState_FinWait = -1,
+ k_ESteamNetworkingConnectionState_Linger = -2,
+ k_ESteamNetworkingConnectionState_Dead = -3,
+ k_ESteamNetworkingConnectionState__Force32Bit = int.MaxValue
+}