summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/CallbackMsg_t.cs
blob: 8895c8adaa36b4507ca4c4bcbde165310f8b3e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}