Esempio n. 1
0
 public void MeleeAttack(UnitConfig self, UnitConfig target)
 {
     //Melee attack script goes here
     //hit check
     accuracy = unitWeapon.baseAim;
     //target.health.TakeDamage(unitWeapon);
     //Spend Actions
     actionPoints.SubtractAllActions();
 }