This commit is contained in:
gib
2024-09-11 11:35:11 -05:00
parent d9ebbc12f1
commit b8d98b35b0
27 changed files with 1010 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}