예제 #1
0
 public void CatchThatGuy(Person person)
 {
     if (person.IsPrisoner)
     {
         StartCatchingMinigame(person);
     }
     else // Autocatch
     {
         _gameManager.PersonCaught(person);
         person.gameObject.SetActive(false);
     }
 }