This commit is contained in:
relikd
2025-07-29 11:54:12 +02:00
commit 6e12dfa61d
18 changed files with 1794 additions and 0 deletions

18
App/AppDelegate.swift Normal file
View File

@@ -0,0 +1,18 @@
import Cocoa
@main
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet var window: NSWindow!
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
}