LobbyChatMsg

Swift
public struct LobbyChatMsg: Sendable

Steamworks LobbyChatMsg_t


Topics

var steamIDLobby: SteamID

Steamworks m_ulSteamIDLobby

Declaration
Swift
public let steamIDLobby: SteamID

var steamIDUser: SteamID

Steamworks m_ulSteamIDUser

Declaration
Swift
public let steamIDUser: SteamID

var chatEntryType: ChatEntryType

Steamworks m_eChatEntryType

Declaration
Swift
public let chatEntryType: ChatEntryType

var chatIDIndex: Int

Steamworks m_iChatID

Declaration
Swift
public let chatIDIndex: Int

init(steamIDLobby: SteamID, steamIDUser: SteamID, chatEntryType: ChatEntryType, chatIDIndex: Int)

Create a customized LobbyChatMsg

Declaration
Swift
public init(
    steamIDLobby: SteamID = SteamID(), steamIDUser: SteamID = SteamID(),
    chatEntryType: ChatEntryType = .invalid, chatIDIndex: Int = 0)