Common/AAPLAppDelegate.h
/* |
Copyright (C) 2016 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
Application delegate for MetalBasicTessellation. |
*/ |
#include <TargetConditionals.h> |
#if TARGET_OS_IOS |
#import <UIKit/UIKit.h> |
@interface AAPLAppDelegate : UIResponder <UIApplicationDelegate> |
@property (nullable, nonatomic, strong) UIWindow *window; |
@end |
#elif TARGET_OS_OSX |
#import <Cocoa/Cocoa.h> |
@interface AAPLAppDelegate : NSObject <NSApplicationDelegate> |
@end |
#endif |
Copyright © 2016 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2016-09-13