G'day, I'm having trouble with making my Actor eat an objet (Penguin eating chips). heres my code.
It says that it cannot find the symbol.Can anyone help?
public void act()
{
checkKeys();
checkFall();
jump();
Eat();
}
public void Eat()
{
if(canSee(Chips.class));
{
eat(Chips.class);
}
}
