ish/app/SceneDelegate.h
2020-04-12 13:18:41 -07:00

23 lines
386 B
Objective-C

//
// SceneDelegate.h
// iSH
//
// Created by Theodore Dubois on 10/26/19.
//
#import <UIKit/UIKit.h>
#import "TerminalViewController.h"
NS_ASSUME_NONNULL_BEGIN
extern TerminalViewController *currentTerminalViewController;
API_AVAILABLE(ios(13))
@interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
@property (nonatomic) UIWindow *window;
@end
NS_ASSUME_NONNULL_END