add experimental safari compilation (xcode project)

This commit is contained in:
SethBurkart123
2023-09-10 10:23:00 +10:00
parent 67bc022ddd
commit 066472948a
41 changed files with 1735 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
//
// AppDelegate.swift
// macOS (App)
//
// Created by Seth Burkart on 10/9/2023.
//
import Cocoa
@main
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ notification: Notification) {
// Override point for customization after application launch.
}
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}