Initial Commit

This commit is contained in:
Eryn Wells 2018-11-03 09:43:38 -04:00
commit 28caab9052
9 changed files with 1168 additions and 0 deletions

27
Terrain/AppDelegate.swift Normal file
View file

@ -0,0 +1,27 @@
//
// AppDelegate.swift
// Terrain
//
// Created by Eryn Wells on 11/3/18.
// Copyright © 2018 Eryn Wells. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}