ish/app/AppDelegate.h
Theodore Dubois 6791a15348 Support multiple windows
Co-authored-by: Noah Peeters <noah.peeters@icloud.com>
2019-10-27 19:29:03 -07:00

20 lines
308 B
Objective-C

//
// AppDelegate.h
// iSH
//
// Created by Theodore Dubois on 10/17/17.
//
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
- (void)exitApp;
+ (int)bootError;
@end
extern NSString *const ProcessExitedNotification;