opengl-playground/imgui-submodule/imgui/examples/example_apple_metal/Shared/AppDelegate.m

12 lines
185 B
Objective-C

#import "AppDelegate.h"
@implementation AppDelegate
#if TARGET_OS_OSX
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
return YES;
}
#endif
@end