mirror of https://github.com/axmolengine/axmol.git
30 lines
623 B
C
30 lines
623 B
C
|
// 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();
|
||
|
~AppDelegate();
|
||
|
|
||
|
virtual bool applicationDidFinishLaunching();
|
||
|
virtual void applicationDidEnterBackground();
|
||
|
virtual void applicationWillEnterForeground();
|
||
|
|
||
|
protected:
|
||
|
cocos2d::CCXEGLView * m_pMainWnd;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // _APP_DELEGATE_H_
|
||
|
|