Files
macOS-MenuBar-MatchTicker/LiquipediaMenu/AppDelegate.swift
Felix Förtsch 87c2956eb4 Initial Commit
2018-10-08 14:31:18 +02:00

28 lines
557 B
Swift

//
// AppDelegate.swift
// LiquipediaMenu
//
// Created by Felix Förtsch on 08.10.18.
// Copyright © 2018 Felix Förtsch. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}