Files

15 lines
312 B
Objective-C
Raw Permalink Normal View History

2023-01-18 21:42:49 +11:00
//go:build darwin
#ifndef appdelegate_h
#define appdelegate_h
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property bool shouldTerminateWhenLastWindowClosed;
2024-01-17 20:45:30 +11:00
@property bool shuttingDown;
2023-10-29 20:29:45 +11:00
- (BOOL)applicationSupportsSecureRestorableState:(NSApplication *)app;
2023-01-18 21:42:49 +11:00
@end
#endif