Example #1
0
 private void Check_Whether_Food_Eaten()
 {
     if (foodSpawner.Check_For_Food_Eaten(this.transform.position))
     {
         currentBodyCount++;
     }
     else
     {
         return;
     }
 }