wails/v3/pkg/application/app_delegate.h
2023-01-18 21:34:11 +11:00

12 lines
212 B
Objective-C

//go:build darwin
#ifndef appdelegate_h
#define appdelegate_h
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property bool shouldTerminateWhenLastWindowClosed;
@end
#endif