1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00
vimr/nvox/AppDelegate.swift

28 lines
521 B
Swift
Raw Normal View History

2016-06-03 23:13:59 +03:00
//
// AppDelegate.swift
// nvox
//
// Created by Tae Won Ha on 03/06/16.
// Copyright © 2016 Tae Won Ha. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
func applicationDidFinishLaunching(aNotification: NSNotification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(aNotification: NSNotification) {
// Insert code here to tear down your application
}
}