//go:build darwin #ifndef _DIALOGS_DELEGATE_H_ #define _DIALOGS_DELEGATE_H_ #import // Conditionally import UniformTypeIdentifiers based on OS version #if __MAC_OS_X_VERSION_MAX_ALLOWED >= 110000 #import #endif // OpenPanel delegate to handle file filtering @interface OpenPanelDelegate : NSObject @property (nonatomic, strong) NSArray *allowedExtensions; @end #endif