This commit is contained in:
workinghard
2015-03-29 19:50:17 -07:00
parent bffd6cfdfa
commit 11503a6d11
12 changed files with 439 additions and 30 deletions

View File

@@ -12,9 +12,15 @@ import Cocoa
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
@IBOutlet weak var windowToolbox: NSWindow!
func applicationDidFinishLaunching(aNotification: NSNotification) {
// Insert code here to initialize your application
}
func applicationShouldTerminate(sender: NSApplication) -> NSApplicationTerminateReply {
CubeNetworkObj.closeConnection()
return NSApplicationTerminateReply.TerminateNow
}
}