2015-04-16 18:07:35 +08:00
|
|
|
#ifndef _APP_DELEGATE_H_
|
|
|
|
#define _APP_DELEGATE_H_
|
|
|
|
|
|
|
|
#include "platform/CCApplication.h"
|
|
|
|
/**
|
|
|
|
@brief The cocos2d Application.
|
|
|
|
|
2016-05-25 22:25:38 +08:00
|
|
|
Private inheritance here hides part of interface from Director.
|
2015-04-16 18:07:35 +08:00
|
|
|
*/
|
|
|
|
class AppDelegate : private cocos2d::Application
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AppDelegate();
|
|
|
|
virtual ~AppDelegate();
|
|
|
|
|
|
|
|
void initGLContextAttrs() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Implement Director and Scene init code here.
|
|
|
|
@return true Initialize success, app continue.
|
|
|
|
@return false Initialize failed, app terminate.
|
|
|
|
*/
|
2015-10-16 13:58:53 +08:00
|
|
|
virtual bool applicationDidFinishLaunching() override;
|
2015-04-16 18:07:35 +08:00
|
|
|
|
|
|
|
/**
|
2016-05-25 22:25:38 +08:00
|
|
|
@brief Called when the application moves to the background
|
2015-04-16 18:07:35 +08:00
|
|
|
@param the pointer of the application
|
|
|
|
*/
|
2015-10-16 13:58:53 +08:00
|
|
|
virtual void applicationDidEnterBackground() override;
|
2015-04-16 18:07:35 +08:00
|
|
|
|
|
|
|
/**
|
2016-05-25 22:25:38 +08:00
|
|
|
@brief Called when the application reenters the foreground
|
2015-04-16 18:07:35 +08:00
|
|
|
@param the pointer of the application
|
|
|
|
*/
|
2015-10-16 13:58:53 +08:00
|
|
|
virtual void applicationWillEnterForeground() override;
|
2015-04-16 18:07:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _APP_DELEGATE_H_
|
|
|
|
|