When the space key and the left key are pressed simultaneously I want the actor to shoot Sphere_left, here's what I've got so far
if("space".equals(Greenfoot.getKey()) && Greenfoot.isKeyDown("left"))
{
getWorld().addObject(new Sphere_left(), getX(), getY());
}
