// // AppDelegate.swift // OrbitCapture // // Created by Hiromichi Matsushima on 2019/03/01. // Copyright © 2019年 Hiromichi Matsushima. All rights reserved. // import Cocoa @NSApplicationMain class AppDelegate: NSObject, NSApplicationDelegate { @IBOutlet weak var window: NSWindow! func applicationDidFinishLaunching(_ aNotification: Notification) { // Insert code here to initialize your application } func applicationWillTerminate(_ aNotification: Notification) { // Insert code here to tear down your application } }