mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
40 lines
778 B
Text
40 lines
778 B
Text
#import "AppDelegate.h"
|
|
#import "EmulatorViewController.h"
|
|
#include "../gs/GSH_OpenGL/GSH_OpenGL.h"
|
|
#include "DebuggerSimulator.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOption
|
|
{
|
|
[EmulatorViewController registerPreferences];
|
|
CGSH_OpenGL::RegisterPreferences();
|
|
return YES;
|
|
}
|
|
|
|
- (void)applicationWillResignActive:(UIApplication*)application
|
|
{
|
|
}
|
|
|
|
- (void)applicationDidEnterBackground:(UIApplication*)application
|
|
{
|
|
}
|
|
|
|
- (void)applicationWillEnterForeground:(UIApplication*)application
|
|
{
|
|
}
|
|
|
|
- (void)applicationDidBecomeActive:(UIApplication*)application
|
|
{
|
|
}
|
|
|
|
- (void)applicationWillTerminate:(UIApplication*)application
|
|
{
|
|
StopSimulateDebugger();
|
|
}
|
|
|
|
@end
|