2013-02-19 15:38:30 +08:00
|
|
|
#ifndef _APP_DELEGATE_H_
|
|
|
|
#define _APP_DELEGATE_H_
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief The cocos2d Application.
|
|
|
|
|
2013-06-20 22:18:43 +08:00
|
|
|
The reason for implement as private inheritance is to hide some interface call by Director.
|
2013-02-19 15:38:30 +08:00
|
|
|
*/
|
2013-06-20 22:18:43 +08:00
|
|
|
class AppDelegate : private cocos2d::Application
|
2013-02-19 15:38:30 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AppDelegate();
|
|
|
|
virtual ~AppDelegate();
|
|
|
|
|
2014-08-22 16:22:16 +08:00
|
|
|
virtual void initGLContextAttrs();
|
|
|
|
|
2013-02-19 15:38:30 +08:00
|
|
|
/**
|
2013-06-20 22:18:43 +08:00
|
|
|
@brief Implement Director and Scene init code here.
|
2013-02-19 15:38:30 +08:00
|
|
|
@return true Initialize success, app continue.
|
|
|
|
@return false Initialize failed, app terminate.
|
|
|
|
*/
|
|
|
|
virtual bool applicationDidFinishLaunching();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief The function be called when the application enter background
|
|
|
|
@param the pointer of the application
|
|
|
|
*/
|
|
|
|
virtual void applicationDidEnterBackground();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief The function be called when the application enter foreground
|
|
|
|
@param the pointer of the application
|
|
|
|
*/
|
|
|
|
virtual void applicationWillEnterForeground();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _APP_DELEGATE_H_
|
|
|
|
|