FrannHammer.Models.BaseMoveModel.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( BaseMoveModel other ) : bool
other BaseMoveModel
return bool
        protected bool Equals(BaseMoveModel other)
        {
            return string.Equals(HitboxActive, other.HitboxActive) && string.Equals(FirstActionableFrame, other.FirstActionableFrame) && string.Equals(BaseDamage, other.BaseDamage) && string.Equals(Angle, other.Angle) && string.Equals(BaseKnockBackSetKnockback, other.BaseKnockBackSetKnockback) && string.Equals(LandingLag, other.LandingLag) && string.Equals(AutoCancel, other.AutoCancel) && string.Equals(KnockbackGrowth, other.KnockbackGrowth) && Type == other.Type && string.Equals(Name, other.Name) && OwnerId == other.OwnerId && Id == other.Id;
        }

Same methods

BaseMoveModel::Equals ( object obj ) : bool