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

namespace Steamworks;

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

	public EResult m_eResult;

	public PartyBeaconID_t m_ulBeaconID;
}