mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
19 lines
307 B
Text
19 lines
307 B
Text
// main.mm boilerplate
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <string>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
std::string System_GetName()
|
|
{
|
|
// TODO: iPad/etc.?
|
|
return "iOS:";
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|