18 lines
373 B
Swift
18 lines
373 B
Swift
//
|
|
// AppDelegate.swift
|
|
// Waveform
|
|
//
|
|
// Created by Eryn Wells on 9/16/18.
|
|
// Copyright © 2018 Eryn Wells. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
|
// Insert code here to initialize your application
|
|
}
|
|
|
|
}
|