1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-18 13:37:27 +00:00
Files
YosysHQ.nextpnr/3rdparty/imgui/examples/example_apple_metal/Shared/AppDelegate.m
Miodrag Milanovic b948b76c8e add imgui library
2018-10-24 19:00:58 +02:00

13 lines
186 B
Objective-C

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