Ensage.Common.UnitDatabase.GetAttackBackswing C# (CSharp) Méthode

GetAttackBackswing() public static méthode

Gets the attack backswing.
public static GetAttackBackswing ( Hero unit ) : double
unit Hero /// The unit. ///
Résultat double
        public static double GetAttackBackswing(Hero unit)
        {
            var attackRate = GetAttackRate(unit);
            var attackPoint = GetAttackPoint(unit);
            return attackRate - attackPoint;
        }

Same methods

UnitDatabase::GetAttackBackswing ( Unit unit ) : double