Binnen-I-be-gone/Binnen-I be gone/AppDelegate.swift

26 lines
551 B
Swift

//
// AppDelegate.swift
// Binnen-I be gone
//
// Created by tracer on 13.03.21.
//
import Cocoa
@main
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ notification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ notification: Notification) {
// Insert code here to tear down your application
}
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}