18 lines
311 B
C#
18 lines
311 B
C#
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;
|
|
}
|
|
}
|