Ejemplo n.º 1
0
 private void updatePlayerAttack()
 {
     boxAP.Text = playerCharacter.AttackToString();
     if (playerCharacter.MainHand == null)
     {
         boxDmg.Text = "Fist";
     }
     else
     {
         boxDmg.Text = playerCharacter.MainHand.Name;
     }
     boxDmg.Text += ": \n" + playerCharacter.DamageToString();
 }