17 lines
275 B
Swift
17 lines
275 B
Swift
//
|
|
// Gamepad.swift
|
|
// vcam
|
|
//
|
|
// Created by William Belcher on 16/3/2023.
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import GameController
|
|
|
|
|
|
class Gamepad : GCController {
|
|
var controller : GCController? = nil
|
|
var id: UInt8? = nil
|
|
}
|