mirror of https://github.com/axmolengine/axmol.git
28 lines
566 B
C++
28 lines
566 B
C++
// 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:
|
|
THelloWorldApp();
|
|
|
|
virtual bool initCocos2d();
|
|
virtual Boolean EventHandler(EventType * pEvent);
|
|
|
|
protected:
|
|
TRectangle m_rcWnd;
|
|
cocos2d::CCXEGLView * m_pMainWnd;
|
|
};
|
|
|
|
|
|
#endif
|
|
|