mirror of https://github.com/LIJI32/SameBoy.git
17 lines
434 B
Objective-C
17 lines
434 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import <JoyKit/JoyKit.h>
|
|
#import "GBOSDView.h"
|
|
#import "GBViewBase.h"
|
|
|
|
|
|
@class Document;
|
|
|
|
@interface GBView : GBViewBase<JOYListener>
|
|
@property (nonatomic, weak) IBOutlet Document *document;
|
|
@property (nonatomic, getter=isMouseHidingEnabled) bool mouseHidingEnabled;
|
|
@property (nonatomic) bool isRewinding;
|
|
@property (weak) GBOSDView *osdView;
|
|
- (NSImage *)renderToImage;
|
|
- (void)setRumble: (double)amp;
|
|
@end
|