I am trying to develop my game using Coco2d-X. I am new with both Coco2d-X and C++ :)
I want to declare a CCSprite as instance variable in order to be able to use it in my whole class.
Up to now, I wrote:
in my .h:
class HelloWorld : public cocos2d::CCLayerColor { public: CC_SYNTHESIZE_READONLY(cocos2d::CCSprite *, _mySprite, Sprite); // CODE HERE.... };in my .cpp: I just want to do something like:
_mySprite->removeFromParentAndCleanup(true);
But the compiler tells me "Use of undeclared identifier _mySprite"
Where am I wrong?
Sorry for my simple question ; I am a beginner with C++ !!
Thanks.