mirror of https://github.com/opa334/TrollStore.git
19 lines
446 B
Mathematica
19 lines
446 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// TrollInstaller
|
||
|
//
|
||
|
// Created by Lars Fröder on 17.08.22.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
int main(int argc, char * argv[]) {
|
||
|
NSString * appDelegateClassName;
|
||
|
@autoreleasepool {
|
||
|
// Setup code that might create autoreleased objects goes here.
|
||
|
appDelegateClassName = NSStringFromClass([AppDelegate class]);
|
||
|
}
|
||
|
return UIApplicationMain(argc, argv, nil, appDelegateClassName);
|
||
|
}
|