aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/imgui/examples/example_apple_metal/Shared/AppDelegate.m
blob: eabb44c14cc09dbeb0002cfcf148bf5325eb74e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "AppDelegate.h"

@implementation AppDelegate

#if TARGET_OS_OSX
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
    return YES;
}
#endif

@end