mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-25 06:06:21 +03:00
27 lines
483 B
Swift
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
|
|
}
|
|
|
|
|
|
}
|
|
|