mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
20 lines
288 B
Objective-C
20 lines
288 B
Objective-C
//
|
|
// SceneDelegate.h
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 10/26/19.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
API_AVAILABLE(ios(13))
|
|
@interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
|
|
|
|
@property (nonatomic) UIWindow *window;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|