20 lines
380 B
Swift
20 lines
380 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) {
|
||
|
}
|
||
|
|
||
|
func applicationWillTerminate(_ aNotification: Notification) {
|
||
|
}
|
||
|
}
|
||
|
|