27 lines
377 B
Objective-C
27 lines
377 B
Objective-C
//
|
|
// ViewController.h
|
|
// Shared (App)
|
|
//
|
|
// Created by Stephen Carter on 4/22/26.
|
|
//
|
|
|
|
#import <TargetConditionals.h>
|
|
|
|
#if TARGET_OS_IOS
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
typedef UIViewController PlatformViewController;
|
|
|
|
#elif TARGET_OS_OSX
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
typedef NSViewController PlatformViewController;
|
|
|
|
#endif
|
|
|
|
@interface ViewController : PlatformViewController
|
|
|
|
@end
|