mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
18 lines
284 B
Objective-C
18 lines
284 B
Objective-C
//go:build darwin
|
|
|
|
|
|
#ifndef WindowDelegate_h
|
|
#define WindowDelegate_h
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <WebKit/WebKit.h>
|
|
|
|
@interface WindowDelegate : NSObject <NSWindowDelegate>
|
|
|
|
@property bool hideOnClose;
|
|
@property (retain) WKWebView* webView;
|
|
|
|
@end
|
|
|
|
|
|
#endif /* WindowDelegate_h */
|