public bool Equals(LinearFrameAnimation other)
 {
     return(other.firstFrame == this.firstFrame && other.length == this.length &&
            other.loopType == this.loopType);
 }
 public LinearFrameAnimation(LinearFrameAnimation copy) : this(copy.firstFrame, copy.length, copy.loopType)
 {
 }