mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 14:42:33 +01:00
10 lines
190 B
Objective-C
10 lines
190 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#include "gb.h"
|
|
|
|
@interface GBView : NSOpenGLView
|
|
- (void) flip;
|
|
- (uint32_t *) pixels;
|
|
@property GB_gameboy_t *gb;
|
|
@property BOOL shouldBlendFrameWithPrevious;
|
|
@end
|