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

namespace Steamworks;

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

	public EResult m_eResult;

	[MarshalAs(UnmanagedType.I1)]
	public bool m_bStillRetrying;
}