summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/FriendsGetFollowerCount_t.cs
blob: fc1732744228e691657c42ea6c66146d7adc7850 (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 = 4)]
[CallbackIdentity(344)]
public struct FriendsGetFollowerCount_t
{
	public const int k_iCallback = 344;

	public EResult m_eResult;

	public CSteamID m_steamID;

	public int m_nCount;
}