2009-02-22 22:28:09 +00:00
|
|
|
//
|
|
|
|
// MiniWindow.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/22/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2018-09-27 03:30:02 +00:00
|
|
|
#import "PlaybackController.h"
|
2009-02-22 22:28:09 +00:00
|
|
|
|
2013-10-11 19:02:05 +00:00
|
|
|
@interface MiniWindow : NSWindow {
|
2018-09-27 03:30:02 +00:00
|
|
|
IBOutlet PlaybackController *playbackController;
|
2009-02-22 22:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|