procedural-3d-engine/xcode/macos/AppDelegate.m

29 lines
590 B
Mathematica
Raw Normal View History

//
// AppDelegate.m
//
// Created by Bill Hollings on 2015/07/30.
// Copyright (c) 2015 The Brenwill Workshop Ltd. All rights reserved.
//
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
}
- (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
}
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
return YES;
}
@end