2017-11-12 20:57:51 +01:00
|
|
|
//
|
|
|
|
// DinosaursWindowController.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/12/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2018-02-03 07:51:32 +01:00
|
|
|
import AppKit
|
2017-11-12 20:57:51 +01:00
|
|
|
|
|
|
|
class DinosaursWindowController: NSWindowController {
|
|
|
|
|
|
|
|
convenience init() {
|
|
|
|
|
|
|
|
self.init(windowNibName: NSNib.Name(rawValue: "DinosaursWindow"))
|
|
|
|
}
|
|
|
|
|
|
|
|
override func windowDidLoad() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Actions
|
|
|
|
|
|
|
|
@IBAction func openHomePage(_ sender: Any?) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@IBAction func selectInMainWindow(_ sender: Any?) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@IBAction func unsubscribe(_ sender: Any?) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|