2010-08-04 14:47:17 +08:00
|
|
|
// Application application header file.
|
|
|
|
|
|
|
|
// Original file name: HelloWorldApp.h
|
|
|
|
// Generated by TOPS Builder:Project wizard,Date:2010-8-3
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __HelloWorld_App_H__
|
|
|
|
#define __HelloWorld_App_H__
|
|
|
|
#include "CCXApplication.h"
|
|
|
|
#include "CCXEGLView.h"
|
|
|
|
|
|
|
|
class THelloWorldApp : public cocos2d::CCXApplication
|
|
|
|
{
|
|
|
|
public:
|
2010-08-05 17:20:24 +08:00
|
|
|
THelloWorldApp() : m_pMainWnd(NULL){}
|
2010-08-04 14:47:17 +08:00
|
|
|
|
|
|
|
virtual Boolean initCocos2d();
|
|
|
|
virtual Boolean EventHandler(EventType * pEvent);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cocos2d::CCXEGLView * m_pMainWnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|