16 lines
282 B
Objective-C
16 lines
282 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// ExampleApp-OSX
|
|
//
|
|
// Created by Marcus Westin on 6/8/13.
|
|
// Copyright (c) 2013 Marcus Westin. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
|
|
@end
|