GSClientAchievementStatus

Swift
public struct GSClientAchievementStatus: Sendable

Steamworks GSClientAchievementStatus_t


Topics

var steamID: SteamID

Steamworks m_SteamID

Declaration
Swift
public let steamID: SteamID

var achievement: String

Steamworks m_pchAchievement

Declaration
Swift
public let achievement: String

var unlocked: Bool

Steamworks m_bUnlocked

Declaration
Swift
public let unlocked: Bool

init(steamID: SteamID, achievement: String, unlocked: Bool)

Create a customized GSClientAchievementStatus

Declaration
Swift
public init(
    steamID: SteamID = SteamID(), achievement: String = "",
    unlocked: Bool = false)