mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
12 lines
252 B
Text
12 lines
252 B
Text
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
#include "DebuggerSimulator.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
StartSimulateDebugger();
|
|
@autoreleasepool
|
|
{
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|