EquippedProfileItems

Swift
public struct EquippedProfileItems: Sendable

Steamworks EquippedProfileItems_t


Topics

var result: Result

Steamworks m_eResult

Declaration
Swift
public let result: Result

var steamID: SteamID

Steamworks m_steamID

Declaration
Swift
public let steamID: SteamID

var hasAnimatedAvatar: Bool

Steamworks m_bHasAnimatedAvatar

Declaration
Swift
public let hasAnimatedAvatar: Bool

var hasAvatarFrame: Bool

Steamworks m_bHasAvatarFrame

Declaration
Swift
public let hasAvatarFrame: Bool

var hasProfileModifier: Bool

Steamworks m_bHasProfileModifier

Declaration
Swift
public let hasProfileModifier: Bool

var hasProfileBackground: Bool

Steamworks m_bHasProfileBackground

Declaration
Swift
public let hasProfileBackground: Bool

var hasMiniProfileBackground: Bool

Steamworks m_bHasMiniProfileBackground

Declaration
Swift
public let hasMiniProfileBackground: Bool

init(result: Result, steamID: SteamID, hasAnimatedAvatar: Bool, hasAvatarFrame: Bool, hasProfileModifier: Bool, hasProfileBackground: Bool, hasMiniProfileBackground: Bool)

Create a customized EquippedProfileItems

Declaration
Swift
public init(
    result: Result = .none, steamID: SteamID = SteamID(),
    hasAnimatedAvatar: Bool = false, hasAvatarFrame: Bool = false,
    hasProfileModifier: Bool = false, hasProfileBackground: Bool = false,
    hasMiniProfileBackground: Bool = false)