ScrollSwitcher/ScrollSwitcher/AppDelegate.swift

31 lines
554 B
Swift
Raw Normal View History

2021-08-31 14:56:34 +00:00
//
// AppDelegate.swift
// ScrollSwitcher
//
// Created by Shadowfacts on 8/31/21.
//
import Cocoa
@main
class AppDelegate: NSObject, NSApplicationDelegate {
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
}
}