ppsspp/ios/main.mm

27 lines
446 B
Plaintext
Raw Normal View History

2013-08-19 03:17:33 +00:00
// main.mm boilerplate
#import <UIKit/UIKit.h>
2013-08-19 03:17:33 +00:00
#import <string>
#import "AppDelegate.h"
2013-09-06 08:12:48 +00:00
#include "base/NativeApp.h"
std::string System_GetProperty(SystemProperty prop) {
switch (prop) {
case SYSPROP_NAME:
return "iOS:";
case SYSPROP_LANGREGION:
return "en_US";
default:
return "";
}
2013-08-19 03:17:33 +00:00
}
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}