this function will be called when the app is active again
| 89 | |
| 90 | // this function will be called when the app is active again |
| 91 | void AppDelegate::applicationWillEnterForeground() |
| 92 | { |
| 93 | Director::getInstance()->startAnimation(); |
| 94 | |
| 95 | #if USE_AUDIO_ENGINE |
| 96 | AudioEngine::resumeAll(); |
| 97 | #endif |
| 98 | } |
| 99 | |
| 100 | void AppDelegate::applicationWillQuit() {} |
nothing calls this directly
no test coverage detected