protected bool Equals(DualAnalogAnimatedBehavior other)
 {
     return(Resting.Equals(other.Resting) && LeftSqueezing.Equals(other.LeftSqueezing) && RightSqueezing.Equals(other.RightSqueezing) && BothSqueezing.Equals(other.BothSqueezing));
 }
 protected bool Equals(AnalogAnimatedBehavior other)
 {
     return(Resting.Equals(other.Resting) && Squeezing.Equals(other.Squeezing) && HandSide == other.HandSide);
 }