gh-somegeekintn-SimDirs/SimDirs/UI/ActionCell.swift
2022-05-20 07:02:09 -05:00

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?()
}
}