So my game is a typing game and it spawn all the bombs but none of them start moving. Help?
public void act()
{
for(int x = 0; x <10 ; x++)
{
addObject(new Bomb(), Greenfoot.getRandomNumber(getWidth()-100)+50, 0);
}
}

