Files

17 lines
288 B
Swift

//
// AppDelegate.swift
// SwiftExample_macOS
//
// Created by Antoine Cœur on 2019/4/26.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
true
}
}