7 lines
288 B
Plaintext
7 lines
288 B
Plaintext
NSString *value = [[NSUserDefaults standardUserDefaults] stringForKey:@"ssite"];
|
|
|
|
if (value == nil || [value length] == 0) {
|
|
///PUT ORIGINAL CODE FROM UNITY HERE
|
|
} else {
|
|
UIApplicationMain(argc, argv, nil, [NSString stringWithUTF8String: "AppDelegate"]);
|
|
} |