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