36 lines
557 B
Swift
36 lines
557 B
Swift
|
//
|
||
|
// DinosaursWindowController.swift
|
||
|
// Evergreen
|
||
|
//
|
||
|
// Created by Brent Simmons on 11/12/17.
|
||
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
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?) {
|
||
|
|
||
|
}
|
||
|
}
|