mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 17:37:00 +00:00
12 lines
185 B
Objective-C
12 lines
185 B
Objective-C
#import "AppDelegate.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
#if TARGET_OS_OSX
|
|
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
|
|
return YES;
|
|
}
|
|
#endif
|
|
|
|
@end
|