Exemplo n.º 1
0
 public void PlayActionSound()
 {
     if (CurrentAction.IsPickupable)
     {
         Asource.PlayOneShot(PickUpSound);
     }
     else
     {
         CurrentAction.PlayActionSFX();
     }
 }