AppDelegate.swift 541 B

123456789101112131415161718192021222324
  1. //
  2. // AppDelegate.swift
  3. // MAVLink
  4. //
  5. // Created by Max Odnovolyk on 10/6/16.
  6. // Copyright © 2016 Build Apps. All rights reserved.
  7. //
  8. import Cocoa
  9. @NSApplicationMain
  10. class AppDelegate: NSObject, NSApplicationDelegate {
  11. @IBOutlet weak var window: NSWindow!
  12. func applicationDidFinishLaunching(_ aNotification: Notification) {
  13. // Insert code here to initialize your application
  14. }
  15. func applicationWillTerminate(_ aNotification: Notification) {
  16. // Insert code here to tear down your application
  17. }
  18. }