Beispiel #1
0
 /// <summary>
 /// Leaves a hiding spot
 /// </summary>
 public void leave()
 {
     if (hidden)
     {
         currentHidingSpot.leave(this.gameObject);
         currentHidingSpot = null;
     }
 }