summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2023-11-25 18:39:02 +0800
committerchai <215380520@qq.com>2023-11-25 18:39:02 +0800
commit0e63c4a2c6dec8dfa260501fb7d73750261ea7b7 (patch)
treef6f2291be65d195d6082b523a56183c332715240 /Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs
+ init
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
+}