16 lines
295 B
Objective-C
16 lines
295 B
Objective-C
//
|
|
// TestAppDelegate.h
|
|
// TestApplication
|
|
//
|
|
// Created by Justin Spahr-Summers on 2013-08-08.
|
|
// Copyright (c) 2013 GitHub. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface TestAppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
|
|
@end
|