mirror of
https://github.com/libretro/Play-.git
synced 2025-03-06 02:10:19 +00:00
15 lines
297 B
Objective-C
15 lines
297 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface PreferencesWindowController : NSWindowController
|
|
{
|
|
IBOutlet NSToolbar* toolbar;
|
|
}
|
|
|
|
@property(retain) NSViewController* currentViewController;
|
|
|
|
+(PreferencesWindowController*)defaultController;
|
|
-(void)show;
|
|
-(IBAction)onToolBarButtonPressed: (id)sender;
|
|
|
|
@end
|