RemoteStorageGetPublishedItemVoteDetailsResult

Swift
public struct RemoteStorageGetPublishedItemVoteDetailsResult: Sendable

Steamworks RemoteStorageGetPublishedItemVoteDetailsResult_t


Topics

var result: Result

Steamworks m_eResult

Declaration
Swift
public let result: Result

var publishedFileId: PublishedFileID

Steamworks m_unPublishedFileId

Declaration
Swift
public let publishedFileId: PublishedFileID

var votesFor: Int

Steamworks m_nVotesFor

Declaration
Swift
public let votesFor: Int

var votesAgainst: Int

Steamworks m_nVotesAgainst

Declaration
Swift
public let votesAgainst: Int

var reports: Int

Steamworks m_nReports

Declaration
Swift
public let reports: Int

var score: Float

Steamworks m_fScore

Declaration
Swift
public let score: Float

init(result: Result, publishedFileId: PublishedFileID, votesFor: Int, votesAgainst: Int, reports: Int, score: Float)

Declaration
Swift
public init(
    result: Result = .none, publishedFileId: PublishedFileID = 0,
    votesFor: Int = 0, votesAgainst: Int = 0, reports: Int = 0, score: Float = 0
)