mirror of
https://github.com/libretro/bsnes-libretro.git
synced 2024-11-24 09:29:51 +00:00
13 lines
316 B
Objective-C
13 lines
316 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "GBShader.h"
|
|
#include "gb.h"
|
|
|
|
@interface GBView : NSOpenGLView
|
|
- (void) flip;
|
|
- (uint32_t *) pixels;
|
|
@property GB_gameboy_t *gb;
|
|
@property (nonatomic) BOOL shouldBlendFrameWithPrevious;
|
|
@property GBShader *shader;
|
|
@property (getter=isMouseHidingEnabled) BOOL mouseHidingEnabled;
|
|
@end
|