mirror of
https://github.com/mue/mue.git
synced 2026-07-13 04:02:32 +02:00
22 lines
425 B
Swift
22 lines
425 B
Swift
//
|
|
// AppDelegate.swift
|
|
// Mue
|
|
//
|
|
// Created by David Ralph on 02/01/2026.
|
|
//
|
|
|
|
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
|
|
}
|
|
|
|
}
|