2010-11-27 18:25:31 +08:00
|
|
|
#ifndef _APP_DELEGATE_H_
|
|
|
|
#define _APP_DELEGATE_H_
|
|
|
|
|
2011-01-22 16:24:54 +08:00
|
|
|
class AppDelegate
|
2010-11-27 18:25:31 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AppDelegate();
|
|
|
|
~AppDelegate();
|
|
|
|
|
2011-01-22 16:24:54 +08:00
|
|
|
/**
|
|
|
|
@brief Implement Window create, CCDirector and CCScene init code here.
|
|
|
|
@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();
|
2010-11-27 18:25:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _APP_DELEGATE_H_
|
|
|
|
|