Initial Commit

This commit is contained in:
Charlie Qiu
2016-06-05 21:29:13 +08:00
commit ae8848d4e8
10 changed files with 1420 additions and 0 deletions

View File

@ -0,0 +1,27 @@
//
// AppDelegate.swift
// ShadowsocksX-NG
//
// Created by on 16/6/5.
// Copyright © 2016 qiuyuzhou. 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
}
}