mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 19:30:10 +08:00
14 lines
283 B
Objective-C
14 lines
283 B
Objective-C
//go:build darwin
|
|
|
|
#ifndef appdelegate_h
|
|
#define appdelegate_h
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
@property bool shouldTerminateWhenLastWindowClosed;
|
|
- (BOOL)applicationSupportsSecureRestorableState:(NSApplication *)app;
|
|
@end
|
|
|
|
#endif
|