18 lines
271 B
C#
18 lines
271 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
public struct CallbackMsg_t
|
|
{
|
|
public int m_hSteamUser;
|
|
|
|
public int m_iCallback;
|
|
|
|
public IntPtr m_pubParam;
|
|
|
|
public int m_cubParam;
|
|
}
|
|
}
|