summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/SteamNetConnectionStatusChangedCallback_t.cs
blob: 1279f63172aca37fedd40587865ce406a530b701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Runtime.InteropServices;

namespace Steamworks;

[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(1221)]
public struct SteamNetConnectionStatusChangedCallback_t
{
	public const int k_iCallback = 1221;

	public HSteamNetConnection m_hConn;

	public SteamNetConnectionInfo_t m_info;

	public ESteamNetworkingConnectionState m_eOldState;
}