123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef GODOT_MENU_DELEGATE_H
- #define GODOT_MENU_DELEGATE_H
- #import <AppKit/AppKit.h>
- #import <Foundation/Foundation.h>
- @interface GodotMenuDelegate : NSObject <NSMenuDelegate> {
- }
- - (void)doNothing:(id)sender;
- @end
- #endif
|