mirror of
https://github.com/trudnai/Steve2.git
synced 2024-11-19 15:32:34 +00:00
16 lines
267 B
Swift
16 lines
267 B
Swift
|
//
|
||
|
// View.swift
|
||
|
// A2Mac
|
||
|
//
|
||
|
// Created by Tamas Rudnai on 9/18/19.
|
||
|
// Copyright © 2019 GameAlloy. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
class QuietView: NSView {
|
||
|
override func performKeyEquivalent(with event: NSEvent) -> Bool {
|
||
|
return true
|
||
|
}
|
||
|
}
|