Spaces:
Sleeping
Sleeping
File size: 201 Bytes
7aec436 |
1 2 3 4 5 6 7 8 9 |
import Cocoa
@main
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}
|