mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-12 22:17:26 +01:00
16 lines
293 B
Objective-C
16 lines
293 B
Objective-C
// -*- objc -*-
|
|
|
|
#ifndef GO_EBITEN_UI_COCOA_EBITEN_OPENGL_VIEW_H_
|
|
#define GO_EBITEN_UI_COCOA_EBITEN_OPENGL_VIEW_H_
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@interface EbitenOpenGLView : NSOpenGLView
|
|
|
|
- (CVReturn)getFrameForTime:(CVTimeStamp const*)outputTime;
|
|
|
|
@end
|
|
|
|
#endif
|