18 lines
336 B
Objective-C
18 lines
336 B
Objective-C
//
|
|
// MainWindow.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 2/22/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MainWindow : NSWindow {
|
|
IBOutlet NSMenuItem * itemLionSeparator;
|
|
IBOutlet NSMenuItem * itemLionFullscreenToggle;
|
|
IBOutlet NSView *playlistView;
|
|
}
|
|
|
|
@end
|