bsnes/Cocoa/GBView.h
2016-04-29 00:45:56 +03:00

12 lines
239 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 BOOL shouldBlendFrameWithPrevious;
@property GBShader *shader;
@end