]>
Commit | Line | Data |
---|---|---|
4a191e80 RBR |
1 | import Cocoa |
2 | ||
3 | @main | |
4 | class AppDelegate: NSObject, NSApplicationDelegate { | |
5 | ||
6 | func applicationDidFinishLaunching(_ notification: Notification) { | |
7 | // Override point for customization after application launch. | |
8 | } | |
9 | ||
10 | func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { | |
11 | return true | |
12 | } | |
13 | ||
14 | } |