25 lines
541 B
Swift
25 lines
541 B
Swift
|
//
|
||
|
// AppDelegate.swift
|
||
|
// MAVLink
|
||
|
//
|
||
|
// Created by Max Odnovolyk on 10/6/16.
|
||
|
// Copyright © 2016 Build Apps. 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
|
||
|
}
|
||
|
}
|