OSDN Git Service

Initial Commit
[orbitcapture/orbitcapture.git] / OrbitCapture / AppDelegate.swift
1 //
2 //  AppDelegate.swift
3 //  OrbitCapture
4 //
5 //  Created by Hiromichi Matsushima on 2019/03/01.
6 //  Copyright © 2019年 Hiromichi Matsushima. All rights reserved.
7 //
8
9 import Cocoa
10
11 @NSApplicationMain
12 class AppDelegate: NSObject, NSApplicationDelegate {
13
14     @IBOutlet weak var window: NSWindow!
15
16
17     func applicationDidFinishLaunching(_ aNotification: Notification) {
18         // Insert code here to initialize your application
19     }
20
21     func applicationWillTerminate(_ aNotification: Notification) {
22         // Insert code here to tear down your application
23     }
24
25
26 }
27