metal-examples-tutorials/ch04/chapter04/AppDelegate.swift

27 lines
500 B
Swift

//
// AppDelegate.swift
// chapter04
//
// Created by Marius on 1/26/16.
// Copyright © 2016 Marius Horga. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(aNotification: NSNotification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(aNotification: NSNotification) {
// Insert code here to tear down your application
}
}