Example #1
0
CCShake* CCShake::create( float d, float strength )
{
    return createWithStrength( d, strength, strength );
}
Example #2
0
CCShake *CCShake::create( float d, float strength )
{
	// call other construction method with twice the same strength
	return createWithStrength( d, strength, strength );
}