Files
2026-03-04 10:03:45 +08:00

13 lines
241 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 8)]
public struct SteamPartyBeaconLocation_t
{
public ESteamPartyBeaconLocationType m_eType;
public ulong m_ulLocationID;
}
}