librashader/test/capi-tests/objctest/objctest/AppDelegate.m

29 lines
529 B
Mathematica
Raw Normal View History

2024-02-14 18:25:10 +11:00
//
// 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