ebiten/ui/cocoa/ebiten_window.h
2013-10-13 03:17:51 +09:00

19 lines
388 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;
@end
#endif