Steve2/A2Mac/CheatMenu.swift
2022-07-10 19:52:16 -07:00

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")
}
}