28 lines
		
	
	
	
		
			652 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			652 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
//
 | 
						|
//  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!
 | 
						|
    @IBOutlet weak var terrainViewController: TerrainViewController!
 | 
						|
 | 
						|
    func applicationDidFinishLaunching(_ aNotification: Notification) {
 | 
						|
        window.contentViewController = terrainViewController
 | 
						|
        window.makeKeyAndOrderFront(nil)
 | 
						|
    }
 | 
						|
 | 
						|
    func applicationWillTerminate(_ aNotification: Notification) {
 | 
						|
        // Insert code here to tear down your application
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 |