mirror of
https://github.com/Luigi30/FruitMachine-Swift.git
synced 2024-11-30 03:57:21 +00:00
27 lines
517 B
Swift
27 lines
517 B
Swift
|
//
|
||
|
// AppDelegate.swift
|
||
|
// FruitMachine
|
||
|
//
|
||
|
// Created by Christopher Rohl on 7/19/17.
|
||
|
// Copyright © 2017 Christopher Rohl. 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
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|