Reorganize existing app files into macOS folder

- Add an iOS target
This commit is contained in:
Eryn Wells 2018-10-07 20:01:08 -07:00
parent 8f1e1335bd
commit fc0a567112
13 changed files with 425 additions and 12 deletions

View file

@ -0,0 +1,19 @@
//
// 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) {
}
}