Esempio n. 1
0
void Projectile::autoMove()
{
	x_ += xdir_*speed_;
	y_ += ydir_*speed_;
	autoUpdateRect();
}
Esempio n. 2
0
void Credit::autoMove()
{
    x_ += xdir_*speed_;
    y_ += ydir_*speed_;
    autoUpdateRect();
}