mirror of
https://github.com/trudnai/Steve2.git
synced 2025-01-14 22:30:25 +00:00
25 lines
440 B
Swift
25 lines
440 B
Swift
//
|
|
// NSMenu_Hard_Hat_Mack.swift
|
|
// Steve ][
|
|
//
|
|
// Created by Tamas Rudnai on 7/5/22.
|
|
// Copyright © 2022 GameAlloy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
import Foundation
|
|
|
|
|
|
class MainMenu: NSMenu {
|
|
override func update() {
|
|
super.update()
|
|
print("MainMenu update")
|
|
}
|
|
|
|
override func submenuAction(_ sender: Any?) {
|
|
super.submenuAction(sender)
|
|
print("MainMenu submenuAction")
|
|
}
|
|
|
|
}
|