예제 #1
0
CCShake* CCShake::create( float d, float strength )
{
    return createWithStrength( d, strength, strength );
}
예제 #2
0
파일: CCShake.cpp 프로젝트: RocMax/MyRPG
CCShake *CCShake::create( float d, float strength )
{
	// call other construction method with twice the same strength
	return createWithStrength( d, strength, strength );
}