diff options
Diffstat (limited to 'DWA140Menu/AppDelegate.swift')
| -rw-r--r-- | DWA140Menu/AppDelegate.swift | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/DWA140Menu/AppDelegate.swift b/DWA140Menu/AppDelegate.swift new file mode 100644 index 0000000..0454a77 --- /dev/null +++ b/DWA140Menu/AppDelegate.swift @@ -0,0 +1,26 @@ +// +// AppDelegate.swift +// DWA140Menu +// +// Created by Dylan Bolger on 9/3/18. +// Copyright © 2018 Dylan Bolger. All rights reserved. +// + +import Cocoa + +@NSApplicationMain +class AppDelegate: NSObject, NSApplicationDelegate { + + + + func applicationDidFinishLaunching(_ aNotification: Notification) { + // Insert code here to initialize your application + } + + func applicationWillTerminate(_ aNotification: Notification) { + // Insert code here to tear down your application + } + + +} + |
