Co-authored-by: Tomek Wójcik <labs@tomekwojcik.pl> Co-committed-by: Tomek Wójcik <labs@tomekwojcik.pl>
27 lines
379 B
Objective-C
27 lines
379 B
Objective-C
//
|
|
// ViewController.h
|
|
// Shared (App)
|
|
//
|
|
// Created by Tomek Wójcik on 21/08/2025.
|
|
//
|
|
|
|
#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
|