| 12345678910111213141516171819202122232425 |
- //
- // AppDelegate.m
- // danmaku
- //
- // Created by Sam Jaffe on 5/22/19.
- // Copyright © 2019 Sam Jaffe. All rights reserved.
- //
- #import "AppDelegate.h"
- @implementation AppDelegate
- - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
- // Insert code here to initialize your application
- }
- - (void)applicationWillTerminate:(NSNotification *)aNotification {
- // Insert code here to tear down your application
- }
- - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
- return YES;
- }
- @end
|