mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:39:58 +08:00
24 lines
397 B
Objective-C
24 lines
397 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// test
|
|
//
|
|
// Created by Lea Anthony on 10/10/21.
|
|
//
|
|
|
|
#ifndef AppDelegate_h
|
|
#define AppDelegate_h
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "WailsContext.h"
|
|
|
|
@interface AppDelegate : NSResponder <NSTouchBarProvider>
|
|
|
|
@property bool alwaysOnTop;
|
|
@property bool startHidden;
|
|
@property bool startFullscreen;
|
|
@property (retain) WailsWindow* mainWindow;
|
|
|
|
@end
|
|
|
|
#endif /* AppDelegate_h */
|