15 lines
400 B
Objective-C
15 lines
400 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#include <Core/gb.h>
|
|
#import "GBJoystickListener.h"
|
|
#import "GBShader.h"
|
|
|
|
@interface GBView<GBJoystickListener> : NSOpenGLView
|
|
- (void) flip;
|
|
- (uint32_t *) pixels;
|
|
@property GB_gameboy_t *gb;
|
|
@property (nonatomic) BOOL shouldBlendFrameWithPrevious;
|
|
@property GBShader *shader;
|
|
@property (getter=isMouseHidingEnabled) BOOL mouseHidingEnabled;
|
|
@property bool isRewinding;
|
|
@end
|