ebiten/ui/cocoa/ebiten_window.h

19 lines
388 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;
- (void)alertDidEnd:(NSAlert*)alert
returnCode:(NSInteger)returnCode
contextInfo:(void*)contextInfo;
- (BOOL)windowShouldClose:(id)sender;
@end
#endif