ebiten/ui/cocoa/ebiten_window.h

17 lines
310 B
C
Raw Normal View History

2013-10-12 20:17:51 +02:00
// -*- objc -*-
#ifndef GO_EBITEN_UI_COCOA_EBITEN_WINDOW_H_
#define GO_EBITEN_UI_COCOA_EBITEN_WINDOW_H_
#import <Cocoa/Cocoa.h>
@interface EbitenWindow : NSWindow<NSWindowDelegate>
- (id)initWithSize:(NSSize)size
glContext:(NSOpenGLContext*)glContext;
- (NSOpenGLContext*)glContext;
2013-10-12 20:17:51 +02:00
@end
#endif