diff options
Diffstat (limited to 'macosx/PictureGLView.h')
-rw-r--r-- | macosx/PictureGLView.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/macosx/PictureGLView.h b/macosx/PictureGLView.h new file mode 100644 index 000000000..effbf3ee2 --- /dev/null +++ b/macosx/PictureGLView.h @@ -0,0 +1,20 @@ +/* PictureGLView */ + +#include <Cocoa/Cocoa.h> + +#include "Manager.h" + +@interface PictureGLView : NSOpenGLView + +{ + HBManager * fManager; + HBTitle * fTitle; + + uint8_t * fPicture; +} + +- (void) SetManager: (HBManager*) manager; +- (void) SetTitle: (HBTitle*) title; +- (void) ShowPicture: (int) picture; + +@end |