procedural-3d-engine/xcode/macos/AppDelegate.m
2017-04-14 12:00:05 -04:00

28 lines
590 B
Objective-C

//
// 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