mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
16 lines
251 B
C++
16 lines
251 B
C++
#if defined(Hiro_Action)
|
|
|
|
namespace hiro {
|
|
|
|
struct pAction : pObject {
|
|
Declare(Action, Object)
|
|
|
|
auto setEnabled(bool enabled) -> void override;
|
|
auto setVisible(bool visible) -> void override;
|
|
|
|
NSMenuItem* cocoaAction = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|