Archived
1

Initial Commit

This commit is contained in:
Kim Wittenburg
2015-08-28 15:35:38 +02:00
commit 3ab655b6c1
14 changed files with 1526 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
//
// AppDelegate.swift
// TagTunes
//
// Created by Kim Wittenburg on 28.08.15.
// Copyright © 2015 Kim Wittenburg. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(aNotification: NSNotification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(aNotification: NSNotification) {
// Insert code here to tear down your application
}
}