axmol/template/CCXAppWiz.vs/CCXAppWiz.uphone/Templates/1033/Classes/HelloWorldScene.h

23 lines
635 B
C
Raw Normal View History

#ifndef _HELLOWORLD_LAYER_H_
#define _HELLOWORLD_LAYER_H_
#include "cocos2d.h"
class HelloWorld : public cocos2d::CCLayer
{
public:
// Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
virtual bool init();
// there's no 'id' in cpp, so we recommand to return the exactly class pointer
static cocos2d::CCScene* scene();
2010-11-18 15:46:59 +08:00
[! if CCX_USE_UI_RESOURCE]
// a selector callback
virtual void menuCloseCallback(NSObject* pSender);
2010-11-18 15:46:59 +08:00
[! endif]
// implement the "static node()" method manually
LAYER_NODE_FUNC(HelloWorld);
};
#endif // _HELLOWORLD_SCENE_H_