This commit is contained in:
relikd
2025-12-04 15:13:22 +01:00
commit f8545f5c77
22 changed files with 3105 additions and 0 deletions

23
App/AppDelegate.swift Normal file
View File

@@ -0,0 +1,23 @@
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
}
}