17 lines
381 B
C
17 lines
381 B
C
|
|
/*
|
||
|
|
* AppDelegate.h
|
||
|
|
*
|
||
|
|
* Copyright (c) 2016-2017 The Brenwill Workshop Ltd.
|
||
|
|
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
|
||
|
|
*/
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||
|
|
|
||
|
|
@property (strong, nonatomic) UIWindow *window;
|
||
|
|
@property (strong, nonatomic) UIViewController *viewController;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|