dots[xpos][ypos]= pill;
world.add(pill.getRPObject());
}
else if (currentItem =='F')
{ // is Fruit
Dot fruit = new Fruit(xpos,ypos,dot_score,fruit_score,fruit_prob,this);
dots[xpos][ypos]= fruit;
world.add(fruit.getRPObject());
}
//check for Dot at last because other Items can have Dot below
if (currentItem =='*')