librashader/test/capi-tests/objctest/objctest/AppDelegate.m
2024-02-14 03:08:09 -05:00

29 lines
529 B
Objective-C
Vendored

//
// AppDelegate.m
// objctest
//
// Created by Ronny Chan on 2024-02-13.
//
#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