Files
CurvyText/PathTextDemoMac/AppDelegate.swift
2020-01-05 12:16:55 -05:00

27 lines
507 B
Swift

//
// AppDelegate.swift
// PathTextDemoMac
//
// Created by Rob Napier on 1/5/20.
// Copyright © 2020 Rob Napier. 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
}
}