class CCNode : public CCObject { int getZOrder(); float getVertexZ(); void setVertexZ(float var); float getRotation(); void setRotation(float newRotation); float getScale(); void setScale(float scale); float getScaleX(); void setScaleX(float newScaleX); float getScaleY(); void setScaleY(float newScaleY); CCPoint getPosition(); void getPosition(float* x = 0, float* y = 0); void setPosition(CCPoint newPosition); void setPosition(float x, float y); float getSkewX(); void setSkewX(float skewX); float getSkewY(); void setSkewY(float skewY); CCMutableArray* getChildren(); CCCamera* getCamera(); CCGridBase* getGrid(); void setGrid(CCGridBase* pGrid); bool getIsVisible(); void setIsVisible(bool var); CCPoint getAnchorPoint(); void setAnchorPoint(CCPoint point); CCPoint getAnchorPointInPixels(); CCSize getContentSizeInPixels(); void setContentSizeInPixels(CCSize sz); CCSize getContentSize(); void setContentSize(CCSize size); bool getIsRunning(); CCNode* getParent(); void setParent(CCNode * var); bool getIsRelativeAnchorPoint(); void setIsRelativeAnchorPoint(bool newValue); int getTag(); void setTag(int var); void* getUserData(); void setUserData(void *var); void addChild(CCNode * child); void addChild(CCNode * child, int zOrder); void addChild(CCNode * child, int zOrder, int tag); void removeChild(CCNode* child, bool cleanup); void removeAllChildrenWithCleanup(bool cleanup); void reorderChild(CCNode * child, int zOrder); void cleanup(void); void draw(void); void visit(void); void transform(void); void transformAncestors(void); CCRect boundingBox(void); void runAction(CCAction* action); void stopAllActions(void); void stopAction(CCAction* action); void stopActionByTag(int tag); CCAction* getActionByTag(int tag); char * description(void); CCNode* getChildByTag(int tag); unsigned int numberOfRunningActions(void); void scheduleUpdate(void); void scheduleUpdateWithPriority(int priority); void unscheduleUpdate(void); void unscheduleAllSelectors(void); void resumeSchedulerAndActions(void); void pauseSchedulerAndActions(void); CCAffineTransform nodeToParentTransform(void); CCAffineTransform parentToNodeTransform(void); CCAffineTransform nodeToWorldTransform(void); CCAffineTransform worldToNodeTransform(void); CCPoint convertToNodeSpace(CCPoint worldPoint); CCPoint convertToWorldSpace(CCPoint nodePoint); CCPoint convertToNodeSpaceAR(CCPoint worldPoint); CCPoint convertToWorldSpaceAR(CCPoint nodePoint); CCPoint convertTouchToNodeSpace(CCTouch * touch); CCPoint convertTouchToNodeSpaceAR(CCTouch * touch); void removeFromParentAndCleanup(bool cleanup); void removeChildByTag(int tag, bool cleanup); static CCNode * node(void); };