From 0e63c4a2c6dec8dfa260501fb7d73750261ea7b7 Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Sat, 25 Nov 2023 18:39:02 +0800 Subject: + init --- .../Steamworks/ESteamNetworkingConnectionState.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs (limited to 'Assembly_Firstpass/Steamworks/ESteamNetworkingConnectionState.cs') 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 +} -- cgit v1.1-26-g67d0