建议cocos2d-x在以后版本中增加的利民功能

建议将很多返回void的函数都能返回函数的宿主对象,就可以这么写了。
this->_array = CCArray::create()->retain()->addObject(str)->addObject(obj);
scene->addChild(CCLayer::create()->addChild(sprite)->addChild(text)->setTouchEnabled());

另外,某些类,如CCScriptSupport.h中的
CCTouchScriptHandlerEntry,没有添加
CC_DLL标记,于是无法在自己的类中使用,希望以后可以在发行版中都加上。