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