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

namespace Steamworks;

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

	[MarshalAs(UnmanagedType.I1)]
	public bool m_bShuffled;
}