mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
21 lines
430 B
Objective-C
21 lines
430 B
Objective-C
// -*- 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;
|
|
- (void)alertDidEnd:(NSAlert*)alert
|
|
returnCode:(NSInteger)returnCode
|
|
contextInfo:(void*)contextInfo;
|
|
- (BOOL)windowShouldClose:(id)sender;
|
|
- (void)beginDrawing;
|
|
- (void)endDrawing;
|
|
|
|
@end
|
|
|
|
#endif
|