mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
464 B
Objective-C
16 lines
464 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property IBOutlet NSWindow *preferencesWindow;
|
|
@property (strong) IBOutlet NSView *graphicsTab;
|
|
@property (strong) IBOutlet NSView *emulationTab;
|
|
@property (strong) IBOutlet NSView *audioTab;
|
|
@property (strong) IBOutlet NSView *controlsTab;
|
|
- (IBAction)showPreferences: (id) sender;
|
|
- (IBAction)toggleDeveloperMode:(id)sender;
|
|
- (IBAction)switchPreferencesTab:(id)sender;
|
|
|
|
@end
|
|
|