示例#1
0
 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;
 }