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

namespace Steamworks;

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

	public SteamLeaderboard_t m_hSteamLeaderboard;

	public SteamLeaderboardEntries_t m_hSteamLeaderboardEntries;

	public int m_cEntryCount;
}