summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/SetUserItemVoteResult_t.cs
blob: 8b65d004908df0691e7a5e4d57ed4cf100bfc4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Runtime.InteropServices;

namespace Steamworks;

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

	public PublishedFileId_t m_nPublishedFileId;

	public EResult m_eResult;

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