mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 20:21:01 +08:00
13 lines
212 B
Objective-C
13 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
|