Files
2018-03-28 14:29:57 -04:00

31 lines
602 B
Objective-C

//
// AppDelegate.m
// macOSRTESample
//
// Created by Deadpikle on 3/28/18.
// Copyright © 2018 Pikle Productions. 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 *)theApplication {
return YES;
}
@end