Пример #1
0
 public void RecieveAttackInput(Hand hand)
 {
     if (hand.weapon == null)
     {
       Melee(hand);
       return;
     }
     hand.AnimateAttack(hand.weapon.actionAnimation);
     hand.weapon.RecieveAttackInput(hand);
 }
Пример #2
0
 void Melee(Hand hand)
 {
     hand.AnimateAttack("stab");
 }