mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
22 lines
433 B
Swift
22 lines
433 B
Swift
//
|
|
// AppDelegate.swift
|
|
// macOS (App)
|
|
//
|
|
// Created by Seth Burkart on 3/12/2023.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
@main
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
func applicationDidFinishLaunching(_ notification: Notification) {
|
|
// Override point for customization after application launch.
|
|
}
|
|
|
|
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
return true
|
|
}
|
|
|
|
}
|