InputHandle

Swift
public struct InputHandle: Hashable, Sendable

extension InputHandle: ExpressibleByIntegerLiteral

Steamworks InputHandle_t


Topics

var value: CUnsignedLongLong

Declaration
Swift
public let value: CUnsignedLongLong

init(CUnsignedLongLong)

Declaration
Swift
public init(_ value: CUnsignedLongLong)

static var allControllers: InputHandle

Steamworks STEAM_INPUT_HANDLE_ALL_CONTROLLERS

Declaration
Swift
public static let allControllers: InputHandle

static var invalid: InputHandle

Steamworks STEAM_INPUT_HANDLE_INVALID

Declaration
Swift
public static let invalid: InputHandle

init(integerLiteral: CUnsignedLongLong)

Creates an instance initialized to the specified integer value.

Do not call this initializer directly. Instead, initialize a variable or constant using an integer literal. For example:

let x = 23

In this example, the assignment to the x constant calls this integer literal initializer behind the scenes.

Declaration
Swift
public init(integerLiteral value: CUnsignedLongLong)
Parameters
value

The value to create.