metal-examples-tutorials/raytracing/Supporting files/AppDelegate.swift

16 lines
270 B
Swift

//
// AppDelegate.swift
//
// Created by Marius Horga on 7/7/18.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}