Пример #1
0
 public void HitByEnemy()
 {
     if (!arrowProof && artemisState != ArtemisState.dead)
     {
         artemisState = ArtemisState.dead;
         PlayDeathSound();
     }
 }
Пример #2
0
 public void RevivePlayer()
 {
     artemisState = ArtemisState.alive;
 }