Files
2018-03-18 18:03:29 +01:00

18 lines
370 B
Swift

//
// AppDelegate.swift
// DetachablePopover
//
// Created by Lukas Kubanek on 25.10.2014.
// Copyright (c) 2014 Lukas Kubanek. All rights reserved.
//
import AppKit
@NSApplicationMain class AppDelegate: NSObject, NSApplicationDelegate {
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}