blob: 0454a77548f7ce7366ecfba8fbf2afa5c3e16154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
}
}
|