diff options
| author | Dylan Bolger <dylanbolger@dylans-mac.local> | 2018-09-03 16:06:39 -0500 |
|---|---|---|
| committer | Dylan Bolger <dylanbolger@Dylans-Mac.local> | 2018-09-03 16:06:39 -0500 |
| commit | 152b21222bb6759de69c1abfb5b5b73496aa1460 (patch) | |
| tree | 371489c0217e08b9264ad1ac171a774942dcf2e0 /DWA140Menu/AppDelegate.swift | |
| download | dwa140shortcut-152b21222bb6759de69c1abfb5b5b73496aa1460.tar.xz dwa140shortcut-152b21222bb6759de69c1abfb5b5b73496aa1460.zip | |
Initial Commit
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 + } + + +} + |
