Initial, holiday fun
This commit is contained in:
commit
abcab0c509
18 changed files with 2638 additions and 0 deletions
20
four/main.swift
Normal file
20
four/main.swift
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
//
|
||||
// main.swift
|
||||
// four
|
||||
//
|
||||
// Created by Ryan McGrath on 12/23/18.
|
||||
// Copyright © 2018 Ryan McGrath. All rights reserved.
|
||||
//
|
||||
|
||||
import Cocoa
|
||||
import Foundation
|
||||
|
||||
autoreleasepool {
|
||||
let delegate = AppDelegate()
|
||||
withExtendedLifetime(delegate, {
|
||||
let application = NSApplication.shared
|
||||
application.delegate = delegate
|
||||
application.run()
|
||||
application.delegate = nil
|
||||
})
|
||||
}
|
||||
Reference in a new issue