29 lines
575 B
Swift
29 lines
575 B
Swift
|
//
|
||
|
// AppDelegate.swift
|
||
|
// Terrain2
|
||
|
//
|
||
|
// 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) {
|
||
|
|
||
|
}
|
||
|
|
||
|
func applicationWillTerminate(_ aNotification: Notification) {
|
||
|
|
||
|
}
|
||
|
|
||
|
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
}
|