The Write.as desktop (GUI) app for macOS.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

27 рядки
502 B

  1. //
  2. // AppDelegate.swift
  3. // writeas
  4. //
  5. // Created by Matt Baer on 12/29/15.
  6. // Copyright © 2015 A Bunch Tell. All rights reserved.
  7. //
  8. import Cocoa
  9. @NSApplicationMain
  10. class AppDelegate: NSObject, NSApplicationDelegate {
  11. func applicationDidFinishLaunching(aNotification: NSNotification) {
  12. // Insert code here to initialize your application
  13. }
  14. func applicationWillTerminate(aNotification: NSNotification) {
  15. // Insert code here to tear down your application
  16. }
  17. }