2010-10-02 09:14:30 +08:00
|
|
|
// Application application header file.
|
|
|
|
|
|
|
|
// Original file name: cocosTemplateApp.h
|
|
|
|
// Generated by TOPS Builder:Project wizard,Date:2010-09-27
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _APP_DELEGATE_H_
|
|
|
|
#define _APP_DELEGATE_H_
|
|
|
|
|
|
|
|
#include "CCXApplication.h"
|
|
|
|
#include "CCXEGLView.h"
|
|
|
|
|
|
|
|
class AppDelegate : public cocos2d::CCXApplication
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AppDelegate();
|
|
|
|
|
2010-11-11 11:18:58 +08:00
|
|
|
virtual bool applicationDidFinishLaunching();
|
2010-10-27 16:25:02 +08:00
|
|
|
virtual void applicationDidEnterBackground();
|
|
|
|
virtual void applicationWillEnterForeground();
|
|
|
|
|
2010-10-02 09:14:30 +08:00
|
|
|
protected:
|
|
|
|
cocos2d::CCXEGLView * m_pMainWnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _APP_DELEGATE_H_
|
|
|
|
|