summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/ClanOfficerListResponse_t.cs
blob: 08440d46352163f01c643eeb42fe250fe2ad8fcf (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(335)]
public struct ClanOfficerListResponse_t
{
	public const int k_iCallback = 335;

	public CSteamID m_steamIDClan;

	public int m_cOfficers;

	public byte m_bSuccess;
}