16 lines
303 B
Objective-C
16 lines
303 B
Objective-C
//
|
|
// NYTAppDelegate.h
|
|
// Notifications for YouTube
|
|
//
|
|
// Created by Kim Wittenburg on 09.07.13.
|
|
// Copyright (c) 2013 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface NYTAppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
|
|
@end
|