add .gitignore

This commit is contained in:
JoyWayer
2023-12-27 20:38:37 +08:00
parent b106a628a5
commit f6343426d6
515 changed files with 104217 additions and 199 deletions

11
msext/AppDelegate.h Normal file → Executable file
View File

@@ -7,11 +7,18 @@
//
#import <UIKit/UIKit.h>
#import "CustomWindow.h"
#import "HTTPServer.h"
@class RootVC;
@class NewRootVC;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) CustomWindow *window;
@property (strong, nonatomic)RootVC *root;
@property (strong, nonatomic)NewRootVC *newroot;
@property (nonatomic,strong) HTTPServer *localHttpServer;
@property (nonatomic,copy) NSString *port;
@end