mirror of
https://github.com/trudnai/Steve2.git
synced 2024-11-19 15:32:34 +00:00
fddb1d9642
- HiRes support - Reset Vector fixes - ROM read from file - Better MMIO Handling - BugFixes - Shader Metal try
16 lines
269 B
Swift
16 lines
269 B
Swift
//
|
|
// View.swift
|
|
// A2Mac
|
|
//
|
|
// Created by Tamas Rudnai on 9/18/19.
|
|
// Copyright © 2019 GameAlloy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class MonitorView: NSView {
|
|
override func performKeyEquivalent(with event: NSEvent) -> Bool {
|
|
return true
|
|
}
|
|
}
|