1
0
mirror of https://github.com/ocornut/imgui.git synced 2025-01-28 02:36:11 +01:00

12 lines
185 B
Objective-C

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