mirror of
https://github.com/zhigang1992/CurvyText.git
synced 2026-01-13 09:00:32 +08:00
27 lines
507 B
Swift
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
|
|
}
|
|
|
|
|
|
}
|
|
|