AppDelegate.m 545 B

12345678910111213141516171819202122232425
  1. //
  2. // AppDelegate.m
  3. // danmaku
  4. //
  5. // Created by Sam Jaffe on 5/22/19.
  6. // Copyright © 2019 Sam Jaffe. All rights reserved.
  7. //
  8. #import "AppDelegate.h"
  9. @implementation AppDelegate
  10. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  11. // Insert code here to initialize your application
  12. }
  13. - (void)applicationWillTerminate:(NSNotification *)aNotification {
  14. // Insert code here to tear down your application
  15. }
  16. - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
  17. return YES;
  18. }
  19. @end