22 lines
370 B
Swift
22 lines
370 B
Swift
//
|
|
// AppDelegate.swift
|
|
// AutoCat2Mac
|
|
//
|
|
// Created by Selim Mustafaev on 13.06.2022.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
@main
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
|
|
|
}
|
|
|
|
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
true
|
|
}
|
|
}
|
|
|