Added examples/apple

This commit is contained in:
Joseph Henry
2017-05-30 13:47:50 -07:00
parent 5ab563ce4c
commit c6f20df8da
40 changed files with 4806 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
//
// AppDelegate.swift
// Example_OSX_App
//
// Created by Joseph Henry on 6/22/16.
// Copyright © 2016 ZeroTier Inc. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(aNotification: NSNotification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(aNotification: NSNotification) {
// Insert code here to tear down your application
}
}