tokenary/Encrypted Ink/Screens/PinViewController.swift
2021-06-13 07:01:01 +03:00

22 lines
400 B
Swift

// Copyright © 2021 Encrypted Ink. All rights reserved.
import Cocoa
class PinViewController: NSViewController {
@IBOutlet weak var titleLabel: NSTextField!
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func actionButtonTapped(_ sender: Any) {
}
@IBAction func cancelButtonTapped(_ sender: NSButton) {
}
}