Ejemplo n.º 1
0
 private bool IsRightHandAttacking()
 {
     if (!RightHandWeapon)
     {
         return(false);
     }
     else
     {
         return(RightHandWeapon.IsAttacking());
     }
 }
Ejemplo n.º 2
0
 private bool IsLeftHandAttacking()
 {
     if (!LeftHandWeapon)
     {
         return(false);
     }
     else
     {
         return(LeftHandWeapon.IsAttacking());
     }
 }