1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-25 06:06:21 +03:00
vimr/ThemedWindow/AppDelegate.swift
2017-09-02 15:55:46 +02:00

27 lines
483 B
Swift

//
// AppDelegate.swift
// ThemedWindow
//
// Created by hat on 02.09.17.
// Copyright © 2017 Tae Won Ha. 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
}
}