mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 07:10:40 +08:00
19 lines
296 B
Objective-C
19 lines
296 B
Objective-C
//
|
|
// WailsAlert.h
|
|
// test
|
|
//
|
|
// Created by Lea Anthony on 20/10/21.
|
|
//
|
|
|
|
#ifndef WailsAlert_h
|
|
#define WailsAlert_h
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WailsAlert : NSAlert
|
|
- (void)addButton:(NSString*)text :(NSString*)defaultButton :(NSString*)cancelButton;
|
|
@end
|
|
|
|
|
|
#endif /* WailsAlert_h */
|