axmol/HelloWorld/HelloWorld.h

28 lines
538 B
C
Raw Normal View History

// Application application header file.
// Original file name: HelloWorldApp.h
// Generated by TOPS Builder:Project wizard,Date:2010-8-3
2010-10-13 17:37:55 +08:00
#ifndef __HELLOWORLD_H__
#define __HELLOWORLD_H__
2010-10-13 17:37:55 +08:00
#include "cocos2d.h"
class HelloWorldAppDelegate : public cocos2d::CCXApplication
{
public:
2010-10-13 17:37:55 +08:00
HelloWorldAppDelegate();
2010-08-05 18:58:38 +08:00
virtual bool initCocos2d();
virtual Boolean EventHandler(EventType * pEvent);
protected:
2010-08-05 18:58:38 +08:00
TRectangle m_rcWnd;
cocos2d::CCXEGLView * m_pMainWnd;
};
#endif