mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-13 06:27:28 +01:00
15 lines
224 B
C
15 lines
224 B
C
// -*- objc -*-
|
|
|
|
#import "ebiten_controller.h"
|
|
|
|
@implementation EbitenController {
|
|
}
|
|
|
|
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:
|
|
(NSApplication*)theApplication {
|
|
(void)theApplication;
|
|
return YES;
|
|
}
|
|
|
|
@end
|