I was following this tutorial called Cocos2d Sprite Tutorial, and noticed as below, the variables were first declared in the header file with an extra "_" underscore character at the front. CCSprite *_dragon; CCAction *_flyAction; CCAction *_moveAction;But then at the @property declaration, the underscore character was removed.@property (nonatomic, retain) CCSprite *dragon;@property (nonatomic, retain) CCAction *flyAction;@property (nonatomic, retain) CCAction *moveAction;And then in the main ".m" file, both names were used as below with the "="...