mirror of https://github.com/LIJI32/SameBoy.git
13 lines
348 B
Objective-C
13 lines
348 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <AppKit/AppKit.h>
|
|
#import <JoyKit/JoyKit.h>
|
|
|
|
@interface GBJoyConManager : NSObject<JOYListener, NSTableViewDataSource, NSTableViewDelegate>
|
|
+ (instancetype)sharedInstance;
|
|
- (IBAction)autopair:(id)sender;
|
|
|
|
@property (nonatomic) bool arrangementMode;
|
|
@property (weak) IBOutlet NSTableView *tableView;
|
|
@end
|
|
|