Files
macOS-MenuBar-MatchTicker/macOS-MenuBar-MatchTicker /AppDelegate.swift
2019-02-03 13:44:01 +01:00

23 lines
516 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 {
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}