//
// TintBy
//
CCTintBy* CCTintBy::actionWithDuration(ccTime duration, CCshort deltaRed, CCshort deltaGreen, CCshort deltaBlue)
{
	CCTintBy *pTintBy = new CCTintBy();
	pTintBy->initWithDuration(duration, deltaRed, deltaGreen, deltaBlue);
	pTintBy->autorelease();

	return pTintBy;
}
//
// TintBy
//
CCTintBy* CCTintBy::create(float duration, CCshort deltaRed, CCshort deltaGreen, CCshort deltaBlue)
{
	CCTintBy *pTintBy = new CCTintBy();
	pTintBy->initWithDuration(duration, deltaRed, deltaGreen, deltaBlue);
	pTintBy->autorelease();

	return pTintBy;
}