Base commit

This commit is contained in:
Lei Nelissen
2022-06-09 22:32:05 +02:00
parent b41031eeac
commit 4d025d5411
54 changed files with 1868 additions and 863 deletions

10
ios/Fintunes/main.m Normal file
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]));
}
}