mirror of https://github.com/axmolengine/axmol.git
28 lines
572 B
C++
28 lines
572 B
C++
// Application application header file.
|
|
|
|
// Original file name: HelloWorldApp.h
|
|
// Generated by TOPS Builder:Project wizard,Date:2010-8-3
|
|
|
|
|
|
#ifndef __HELLOWORLD_H__
|
|
#define __HELLOWORLD_H__
|
|
|
|
#include "cocos2d.h"
|
|
|
|
class HelloWorldAppDelegate : public cocos2d::CCXApplication
|
|
{
|
|
public:
|
|
HelloWorldAppDelegate();
|
|
|
|
virtual bool applicationDidFinishLaunching();
|
|
virtual void applicationDidEnterBackground();
|
|
virtual void applicationWillEnterForeground();
|
|
|
|
protected:
|
|
cocos2d::CCXEGLView * m_pMainWnd;
|
|
};
|
|
|
|
|
|
#endif
|
|
|