mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-07 09:00:40 +00:00
20 lines
307 B
Plaintext
20 lines
307 B
Plaintext
// 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]));
|
|
}
|
|
}
|