mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
1362906f94
Ensures there's only one joystick manager, which is shared by all machines, with input going only to the key window.
14 lines
261 B
Swift
14 lines
261 B
Swift
//
|
|
// DocumentController.swift
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 18/06/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class DocumentController: NSDocumentController {
|
|
let joystickManager = CSJoystickManager()
|
|
}
|