16 lines
288 B
C#
16 lines
288 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(304)]
|
|
public struct PersonaStateChange_t
|
|
{
|
|
public const int k_iCallback = 304;
|
|
|
|
public ulong m_ulSteamID;
|
|
|
|
public EPersonaChange m_nChangeFlags;
|
|
}
|
|
}
|