yattee/macOS/AppDelegate.swift
2021-10-24 11:16:04 +02:00

9 lines
198 B
Swift

import AppKit
import Foundation
final class AppDelegate: NSObject, NSApplicationDelegate {
func applicationShouldTerminateAfterLastWindowClosed(_: NSApplication) -> Bool {
true
}
}