Adds AltServer macOS target

This commit is contained in:
Riley Testut
2019-05-24 11:29:27 -07:00
parent 001a2d9365
commit 8abf519c94
8 changed files with 1000 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
//
// AppDelegate.swift
// AltServer
//
// Created by Riley Testut on 5/24/19.
// Copyright © 2019 Riley Testut. 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
}
}