GSClientGroupStatus

Swift
public struct GSClientGroupStatus: Sendable

Steamworks GSClientGroupStatus_t


Topics

var user: SteamID

Steamworks m_SteamIDUser

Declaration
Swift
public let user: SteamID

var group: SteamID

Steamworks m_SteamIDGroup

Declaration
Swift
public let group: SteamID

var member: Bool

Steamworks m_bMember

Declaration
Swift
public let member: Bool

var officer: Bool

Steamworks m_bOfficer

Declaration
Swift
public let officer: Bool

init(user: SteamID, group: SteamID, member: Bool, officer: Bool)

Create a customized GSClientGroupStatus

Declaration
Swift
public init(
    user: SteamID = SteamID(), group: SteamID = SteamID(), member: Bool = false,
    officer: Bool = false)