I'm getting the cannot find symbol - method isTouching (java.lang.class <Food>) error.
Bellow is the current method and the area highlighted is the isTouching in the if statement any help would be appreciated.
public void act()
{
moveAround();
if(isTouching(Food.class)) {
removeTouching(Food.class);
SnakeWorld world = (SnakeWorld)getWorld();
world.addFood();
}
}
