mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-13 06:27:28 +01:00
17 lines
324 B
Objective-C
17 lines
324 B
Objective-C
// -*- objc -*-
|
|
|
|
#ifndef GO_EBITEN_UI_COCOA_EBITEN_GAME_WINDOW_H_
|
|
#define GO_EBITEN_UI_COCOA_EBITEN_GAME_WINDOW_H_
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface EbitenGameWindow : NSWindow<NSWindowDelegate>
|
|
|
|
- (id)initWithSize:(NSSize)size
|
|
glContext:(NSOpenGLContext*)glContext;
|
|
- (NSOpenGLContext*)glContext;
|
|
|
|
@end
|
|
|
|
#endif
|