package project;

interface eatable {
  
  int getfoodValue();
  void beEaten(Player1 p);
  
}