15 lines
329 B
C
15 lines
329 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 <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
||
|
|
|
||
|
|
@property (strong, nonatomic) NSViewController *viewController;
|
||
|
|
|
||
|
|
@end
|