21 lines
386 B
Objective-C
21 lines
386 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// macOS (App)
|
|
//
|
|
// Created by Stephen Carter on 4/22/26.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)notification {
|
|
// Override point for customization after application launch.
|
|
}
|
|
|
|
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
|
|
return YES;
|
|
}
|
|
|
|
@end
|