ComputeNewPlayerCompatibilityResult

Swift
public struct ComputeNewPlayerCompatibilityResult: Sendable

Steamworks ComputeNewPlayerCompatibilityResult_t


Topics

var result: Result

Steamworks m_eResult

Declaration
Swift
public let result: Result

var playersThatDontLikeCandidate: Int

Steamworks m_cPlayersThatDontLikeCandidate

Declaration
Swift
public let playersThatDontLikeCandidate: Int

var playersThatCandidateDoesntLike: Int

Steamworks m_cPlayersThatCandidateDoesntLike

Declaration
Swift
public let playersThatCandidateDoesntLike: Int

var clanPlayersThatDontLikeCandidate: Int

Steamworks m_cClanPlayersThatDontLikeCandidate

Declaration
Swift
public let clanPlayersThatDontLikeCandidate: Int

var candidate: SteamID

Steamworks m_SteamIDCandidate

Declaration
Swift
public let candidate: SteamID

init(result: Result, playersThatDontLikeCandidate: Int, playersThatCandidateDoesntLike: Int, clanPlayersThatDontLikeCandidate: Int, candidate: SteamID)

Declaration
Swift
public init(
    result: Result = .none, playersThatDontLikeCandidate: Int = 0,
    playersThatCandidateDoesntLike: Int = 0,
    clanPlayersThatDontLikeCandidate: Int = 0, candidate: SteamID = SteamID())