RemotePlayInputKey

Swift
public struct RemotePlayInputKey: Sendable

Steamworks RemotePlayInputKey_t


Topics

var scancode: RemotePlayScancode

Steamworks m_eScancode

Declaration
Swift
public let scancode: RemotePlayScancode

var modifiers: RemotePlayKeyModifier

Steamworks m_unModifiers

Declaration
Swift
public let modifiers: RemotePlayKeyModifier

var keycode: Int

Steamworks m_unKeycode

Declaration
Swift
public let keycode: Int

init(scancode: RemotePlayScancode, modifiers: RemotePlayKeyModifier, keycode: Int)

Create a customized RemotePlayInputKey

Declaration
Swift
public init(
    scancode: RemotePlayScancode = .unknown,
    modifiers: RemotePlayKeyModifier = [], keycode: Int = 0)