27 lines
502 B
Swift
27 lines
502 B
Swift
|
//
|
||
|
// AppDelegate.swift
|
||
|
// Metaballs
|
||
|
//
|
||
|
// Created by Eryn Wells on 7/30/17.
|
||
|
// Copyright © 2017 Eryn Wells. 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
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|