mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-14 06:57:27 +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
|