mirror of
https://github.com/somegeekintn/SimDirs.git
synced 2026-04-27 14:57:40 +00:00
18 lines
324 B
Swift
18 lines
324 B
Swift
//
|
|
// ActionCell.swift
|
|
// SimDirs
|
|
//
|
|
// Created by Casey Fleser on 5/1/16.
|
|
// Copyright © 2016 Quiet Spark. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class ActionCell: NSView {
|
|
@IBOutlet weak var actionButton : NSButton!
|
|
var action : (() -> ())?
|
|
|
|
@IBAction func executeAction(_ sender: Any) {
|
|
action?()
|
|
}
|
|
}
|