private int Score = 0;
/**
* Act: move up and down when cursor keys are pressed.
*/
public void act()
{
checkKeyPress();
if(isTouching(Bacteria.class))
{
setScore(getScore() + 20)
{
}
}
}


