DJ_KASKO wrote...
i dont know what that means
// add instance field
private boolean moving;
// in act method
moving = !moving; // first line of act
if (moving)
{
// moving code here
}
else
{
// scoring code here
}